From 8d7a5546e182d4c3c611a5a251ba5a4db713a172 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Tue, 23 Jun 2020 22:33:08 -0700 Subject: [PATCH] Add separators in camera-based persp correction Horizontal lines to separate the sliders, control lines buttons, and automatic buttons. --- rtgui/perspective.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/perspective.cc b/rtgui/perspective.cc index e58cec211..7ce981548 100644 --- a/rtgui/perspective.cc +++ b/rtgui/perspective.cc @@ -209,7 +209,9 @@ PerspCorrection::PerspCorrection () : FoldableToolPanel(this, "perspective", M(" camera_vbox->pack_start (*camera_roll); camera_vbox->pack_start (*camera_pitch); camera_vbox->pack_start (*camera_yaw); + camera_vbox->pack_start (*Gtk::manage (new Gtk::HSeparator())); camera_vbox->pack_start (*control_lines_box); + camera_vbox->pack_start (*Gtk::manage (new Gtk::HSeparator())); camera_vbox->pack_start (*auto_hbox); camera_frame->add(*camera_vbox); camera_based->pack_start(*camera_frame);