Solving issue 2274: "Adding a suffix to the version string"

This commit is contained in:
Hombrenatureh.510
2014-03-05 20:32:30 +01:00
parent fbf818ab71
commit 5d91a8850b
9 changed files with 24 additions and 4 deletions

View File

@@ -113,7 +113,10 @@ RTWindow::RTWindow ()
gtkosx_application_ready (osxApp);
}
#endif
set_title("RawTherapee "+versionString);
Glib::ustring versionStr("RawTherapee "+versionString);
if (!versionSuffixString.empty())
versionStr += " "+versionSuffixString;
set_title(versionStr);
property_allow_shrink() = true;
set_default_size(options.windowWidth, options.windowHeight);
set_modal(false);