Fix theme margins

Fix spacing that was changed due to the restructuring of foldable tool
panels.
This commit is contained in:
Lawrence Lee
2021-12-19 14:51:47 -08:00
parent 012103b4e2
commit a7010d25cd
14 changed files with 85 additions and 68 deletions

View File

@@ -172,10 +172,8 @@ Resize::Resize () : FoldableToolPanel(this, TOOL_NAME, M("TP_RESIZE_LABEL"), fal
method->signal_changed().connect ( sigc::mem_fun(*this, &Resize::methodChanged) );
sconn = spec->signal_changed().connect ( sigc::mem_fun(*this, &Resize::specChanged) );
packBox = Gtk::manage (new ToolParamBlock ());
pack_end (*packBox);
packBox->hide();
packBox->set_tooltip_markup (M("TP_PRSHARPENING_TOOLTIP"));
getSubToolsContainer()->hide();
getSubToolsContainer()->set_tooltip_markup (M("TP_PRSHARPENING_TOOLTIP"));
show_all();
}
@@ -398,9 +396,9 @@ void Resize::methodChanged ()
// Post-resize Sharpening assumes the image is in Lab space, and currently Lanczos is the only method which uses that space, and Lanczos is on row 0.
if (method->get_active_row_number() == 0) {
packBox->set_sensitive(true);
getSubToolsContainer()->set_sensitive(true);
} else {
packBox->set_sensitive(false);
getSubToolsContainer()->set_sensitive(false);
}
}