SCUMM: MACGUI: Make Indy3 Save dialog EditText widget pixel accurate

This commit is contained in:
AndywinXp 2023-11-19 19:19:23 +01:00
parent ca73d4352e
commit fd632752e2

View File

@ -2985,6 +2985,10 @@ MacGui::MacDialogWindow *MacGui::createDialog(int dialogId) {
case 16:
{
// Editable text
// Adjust for pixel accuracy...
r.left -= 1;
MacGui::MacEditText *editText = window->addEditText(r, "Game file", enabled);
editText->selectAll();