From 976cf4c10388ddceba931f4369f9a79cdcbf26b4 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Wed, 10 Jun 2020 12:57:08 -0700 Subject: [PATCH] Make control lines buttons disabled in batch mode --- rtgui/perspective.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rtgui/perspective.cc b/rtgui/perspective.cc index aade62911..00d6cfa49 100644 --- a/rtgui/perspective.cc +++ b/rtgui/perspective.cc @@ -580,6 +580,9 @@ void PerspCorrection::setBatchMode (bool batchMode) projection_shift_vert->showEditedCB (); projection_yaw->showEditedCB (); + lines_button_h->set_sensitive(false); + lines_button_v->set_sensitive(false); + lines_button_edit->set_sensitive(false); auto_pitch->set_sensitive(false); auto_yaw->set_sensitive(false); auto_pitch_yaw->set_sensitive(false);