From bb623d3a02ddd20ebbace4ab8a8c18c3adf75f77 Mon Sep 17 00:00:00 2001 From: Thanatomanic <6567747+Thanatomanic@users.noreply.github.com> Date: Thu, 13 May 2021 12:34:27 +0200 Subject: [PATCH] Fix instance of deprecated HBox --- rtgui/spot.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/spot.cc b/rtgui/spot.cc index 6d749838b..10ff99767 100644 --- a/rtgui/spot.cc +++ b/rtgui/spot.cc @@ -54,7 +54,7 @@ Spot::Spot() : reset->set_border_width (0); reset->signal_clicked().connect ( sigc::mem_fun (*this, &Spot::resetPressed) ); - labelBox = Gtk::manage (new Gtk::HBox()); + labelBox = Gtk::manage (new Gtk::Box()); labelBox->set_spacing (2); labelBox->pack_start (*countLabel, false, false, 0); labelBox->pack_end (*edit, false, false, 0);