Kaydet (Commit) b6ab7439 authored tarafından Katarina Behrens's avatar Katarina Behrens Kaydeden (comit) Andras Timar

tdf#83859: Make arrow keys work again in named ranges dropdown

Regression from ed6b8c9f which slightly changed the logic
and set bHandled to true by default, thus effectively throwing all
key press events except for Enter and Esc away.

Set key press events (minus Enter & Esc) to bHandled = false and let
them fall through to be dealt with in the base class (ComboBox)

Change-Id: Ie1d857725a7de1d0bed1fd59df7eef5390ae5f3d
Reviewed-on: https://gerrit.libreoffice.org/16407Reviewed-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
üst 1ab670c5
......@@ -2505,6 +2505,10 @@ bool ScPosWnd::Notify( NotifyEvent& rNEvt )
ReleaseFocus_Impl();
}
break;
default:
bHandled = false;
break;
}
}
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment