From 3579fc4fb37c0489d74cfbdf6e421ba4da00d06e Mon Sep 17 00:00:00 2001 From: heckflosse Date: Mon, 15 Apr 2019 15:47:26 +0200 Subject: [PATCH] use attach_next_to instead of attach --- rtgui/preferences.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc index da0a5773e..999a412a2 100644 --- a/rtgui/preferences.cc +++ b/rtgui/preferences.cc @@ -960,7 +960,7 @@ Gtk::Widget* Preferences::getGeneralPanel() ckbshowtooltiplocallab = Gtk::manage(new Gtk::CheckButton(M("PREFERENCES_SHOWTOOLTIP"))); setExpandAlignProperties(ckbshowtooltiplocallab, false, false, Gtk::ALIGN_START, Gtk::ALIGN_START); - workflowGrid->attach(*ckbshowtooltiplocallab,0, 3); + workflowGrid->attach_next_to(*ckbshowtooltiplocallab, *ckbFileBrowserToolbarSingleRow, Gtk::POS_RIGHT, 1, 1); fworklflow->add(*workflowGrid);