Merged with dev, resolved conflicts, fixes to icon refs
This commit is contained in:
@@ -272,7 +272,7 @@ private:
|
||||
}
|
||||
|
||||
#else
|
||||
profile = "RT_sRGB";
|
||||
profile = options.rtSettings.srgb;
|
||||
#endif
|
||||
|
||||
#if !defined(__APPLE__) // monitor profile not supported on apple
|
||||
@@ -538,8 +538,8 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
beforeAfter->set_relief (Gtk::RELIEF_NONE);
|
||||
beforeAfter->set_tooltip_markup (M ("MAIN_TOOLTIP_TOGGLE"));
|
||||
|
||||
iBeforeLockON = new RTImage ("lock-on.png");
|
||||
iBeforeLockOFF = new RTImage ("lock-off.png");
|
||||
iBeforeLockON = new RTImage ("padlock-locked-small.png");
|
||||
iBeforeLockOFF = new RTImage ("padlock-unlocked-small.png");
|
||||
|
||||
Gtk::VSeparator* vsept = Gtk::manage (new Gtk::VSeparator ());
|
||||
Gtk::VSeparator* vsepz = Gtk::manage (new Gtk::VSeparator ());
|
||||
@@ -651,19 +651,19 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
iops->set_row_spacing (2);
|
||||
iops->set_column_spacing (2);
|
||||
|
||||
Gtk::Image *saveButtonImage = Gtk::manage (new RTImage ("gtk-save-large.png"));
|
||||
Gtk::Image *saveButtonImage = Gtk::manage (new RTImage ("save.png"));
|
||||
saveimgas = Gtk::manage (new Gtk::Button ());
|
||||
saveimgas->add (*saveButtonImage);
|
||||
saveimgas->set_tooltip_markup (M ("MAIN_BUTTON_SAVE_TOOLTIP"));
|
||||
setExpandAlignProperties (saveimgas, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_FILL);
|
||||
|
||||
Gtk::Image *queueButtonImage = Gtk::manage (new RTImage ("processing.png"));
|
||||
Gtk::Image *queueButtonImage = Gtk::manage (new RTImage ("gears.png"));
|
||||
queueimg = Gtk::manage (new Gtk::Button ());
|
||||
queueimg->add (*queueButtonImage);
|
||||
queueimg->set_tooltip_markup (M ("MAIN_BUTTON_PUTTOQUEUE_TOOLTIP"));
|
||||
setExpandAlignProperties (queueimg, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_FILL);
|
||||
|
||||
Gtk::Image *sendToEditorButtonImage = Gtk::manage (new RTImage ("image-editor.png"));
|
||||
Gtk::Image *sendToEditorButtonImage = Gtk::manage (new RTImage ("palette-brush.png"));
|
||||
sendtogimp = Gtk::manage (new Gtk::Button ());
|
||||
sendtogimp->add (*sendToEditorButtonImage);
|
||||
sendtogimp->set_tooltip_markup (M ("MAIN_BUTTON_SENDTOEDITOR_TOOLTIP"));
|
||||
@@ -699,7 +699,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
|
||||
if (!simpleEditor && !options.tabbedUI) {
|
||||
// Navigation buttons
|
||||
Gtk::Image *navPrevImage = Gtk::manage (new RTImage ("nav-prev.png"));
|
||||
Gtk::Image *navPrevImage = Gtk::manage (new RTImage ("arrow2-left.png"));
|
||||
navPrevImage->set_padding (0, 0);
|
||||
navPrev = Gtk::manage (new Gtk::Button ());
|
||||
navPrev->add (*navPrevImage);
|
||||
@@ -707,7 +707,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
navPrev->set_tooltip_markup (M ("MAIN_BUTTON_NAVPREV_TOOLTIP"));
|
||||
setExpandAlignProperties (navPrev, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_FILL);
|
||||
|
||||
Gtk::Image *navNextImage = Gtk::manage (new RTImage ("nav-next.png"));
|
||||
Gtk::Image *navNextImage = Gtk::manage (new RTImage ("arrow2-right.png"));
|
||||
navNextImage->set_padding (0, 0);
|
||||
navNext = Gtk::manage (new Gtk::Button ());
|
||||
navNext->add (*navNextImage);
|
||||
@@ -715,7 +715,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
navNext->set_tooltip_markup (M ("MAIN_BUTTON_NAVNEXT_TOOLTIP"));
|
||||
setExpandAlignProperties (navNext, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_FILL);
|
||||
|
||||
Gtk::Image *navSyncImage = Gtk::manage (new RTImage ("nav-sync.png"));
|
||||
Gtk::Image *navSyncImage = Gtk::manage (new RTImage ("arrow-updown.png"));
|
||||
navSyncImage->set_padding (0, 0);
|
||||
navSync = Gtk::manage (new Gtk::Button ());
|
||||
navSync->add (*navSyncImage);
|
||||
|
Reference in New Issue
Block a user