Merge branch 'dev' into 32b-tiff-output-cli
This commit is contained in:
@@ -533,8 +533,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 ());
|
||||
@@ -642,19 +642,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"));
|
||||
@@ -690,7 +690,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);
|
||||
@@ -698,7 +698,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);
|
||||
@@ -706,7 +706,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