diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-10-04 11:49:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-10-04 15:43:32 +0200 |
commit | 1346d0c125c35094d241bbc1e0e0316433a292aa (patch) | |
tree | e8da66463739ce9da52cc0d58177f896f480c524 /vcl | |
parent | 1cfcf1a5c7437b935da652e6bd25db536c4f4cf7 (diff) |
weld SwFindEntryDialog
Change-Id: Ia45e4ce13b92fd73fcc8ad52233aa5eccc3cfb6d
Reviewed-on: https://gerrit.libreoffice.org/61365
Tested-by: Jenkins
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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index f1d69a509e2d..d935dc672c8b 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -2210,6 +2210,12 @@ public: return GtkToVcl(ret); } + virtual void show() override + { + sort_native_button_order(GTK_BOX(gtk_dialog_get_action_area(m_pDialog))); + gtk_widget_show(m_pWidget); + } + static int VclToGtk(int nResponse) { if (nResponse == RET_OK) |