diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-05-29 12:41:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-05-29 21:49:55 +0200 |
commit | 5dc1b50e952765b160395aef15730c71864786ff (patch) | |
tree | 4403831f6580278d88077465ac971a5dee0759e5 /vcl | |
parent | 9773f6140e9c990f6f7e4ea366580cb94bd1539c (diff) |
disable inconsistent when setting true/false
Change-Id: Ib612e7f38c7a1a638d69af2a6d26f1293fe0c8da
Reviewed-on: https://gerrit.libreoffice.org/55017
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkinst.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index e956f4a3c93b..577d5e1d2744 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -2692,6 +2692,7 @@ public: virtual void set_active(bool active) override { disable_notify_events(); + gtk_toggle_button_set_inconsistent(m_pToggleButton, false); gtk_toggle_button_set_active(m_pToggleButton, active); enable_notify_events(); } |