Updated RawTherapee theme, now works in HiDPI mode

see issue #3547
This commit is contained in:
Hombre
2019-02-28 21:30:20 +01:00
parent bd175ec8d1
commit d66437dd98
5 changed files with 1718 additions and 375 deletions

View File

@@ -33,6 +33,7 @@ CurveEditorGroup::CurveEditorGroup (Glib::ustring& curveDir, Glib::ustring group
// We set the label to the one provided as parameter, even if it's an empty string
curveGroupLabel = Gtk::manage (new Gtk::Label (groupLabel + ":", Gtk::ALIGN_START));
setExpandAlignProperties(curveGroupLabel, false, false, Gtk::ALIGN_START, Gtk::ALIGN_CENTER);
set_row_spacing(RTScalable::getScale());
}
CurveEditorGroup::~CurveEditorGroup()
@@ -120,6 +121,7 @@ void CurveEditorGroup::newLine()
if (curveEditors.size() > numberOfPackedCurve) {
Gtk::Grid* currLine = Gtk::manage (new Gtk::Grid ());
setExpandAlignProperties(currLine, true, false, Gtk::ALIGN_FILL, Gtk::ALIGN_START);
currLine->set_column_spacing(RTScalable::getScale());
bool isHeader = false;
int x = 0;