>>901
最低限のプラグイン制作知識がある事前提で話すけどrmmz_windows.jsの1226行目
Window_Selectable.prototype.hitTestで判定してるからそこを弄るしかないんじゃないの

const rect = this.itemRect(index);
if (rect.contains(cx, cy)) {
return index;
}

rectを弄るかcontainsを弄るか…まぁ前者で良いか。2ドットずつ広げたいならconst rectの下の行に
rect.x -= 2; rect.y -= 2; rect.width += 4; rect.height += 4;
を挿入すれば判定も拡がるはず。もしも判定が他の枠と重複したら上の選択肢が優先される