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

@@ -98,7 +98,7 @@ public:
{
return nullptr;
}
virtual Gtk::Box *getSubToolsContainer() const
virtual ToolParamBlock *getSubToolsContainer() const
{
return nullptr;
}
@@ -168,7 +168,7 @@ class FoldableToolPanel :
protected:
Gtk::Box* parentContainer;
MyExpander* exp;
Gtk::Box *subToolsContainer;
ToolParamBlock *subToolsContainer;
bool lastEnabled;
sigc::connection enaConn;
void foldThemAll (GdkEventButton* event);
@@ -183,7 +183,7 @@ public:
return exp;
}
Gtk::Box *getSubToolsContainer() const final
ToolParamBlock *getSubToolsContainer() const final
{
return subToolsContainer;
}