diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-11 19:53:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-12 16:46:49 +0100 |
commit | 18dd0254a38ca91d0d325aaecc4227724c035d87 (patch) | |
tree | f72d3b271f80b24a8d079812c3c91cc2338c89d6 /basctl | |
parent | 6dd94a4dd8f0b842cd62ec872ede17c8077be98c (diff) |
cypress: mobile: Font size combobox is broken on core/master.
a) for vcl version, listen to modify and select, instead of just modify so
we can get the artificial select via uiobject that the mobile makes use of.
(and disregard the modify which we know will lead to select so we get just
one event in that case)
b) default to assuming something has been picked "directly" unless we
know otherwise.
ideally the result is that
https://cgit.freedesktop.org/libreoffice/online/commit/?id=08d6c3fdf9bac4ad8318151ab1402690eb950f52
isn't needed
Change-Id: Ibbf33eab88dabd55d0c329aa00c8adaf001a4f50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88476
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/IDEComboBox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/IDEComboBox.cxx b/basctl/source/basicide/IDEComboBox.cxx index 5279861365d1..b748577e9c63 100644 --- a/basctl/source/basicide/IDEComboBox.cxx +++ b/basctl/source/basicide/IDEComboBox.cxx @@ -300,7 +300,7 @@ IMPL_LINK_NOARG(LibBox, FocusOutHdl, weld::Widget&, void) void LibBox::Select() { - if (m_xWidget->changed_by_menu()) + if (m_xWidget->changed_by_direct_pick()) { if (!mbIgnoreSelect) NotifyIDE(); |