Button and progress bar style improvements
- The buttons in the main notebook (ICC Profile Creator, Preferences, Fullscreen) and the buttons in the bottom-left corner under the preview (Save, Sent to queue, Send to GIMP) are now consistently flat to match all other toolbar buttons. - Progress bar thicker and more centered in their containers.
This commit is contained in:
@@ -657,18 +657,21 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
|
||||
|
||||
Gtk::Image *saveButtonImage = Gtk::manage (new RTImage ("save.png"));
|
||||
saveimgas = Gtk::manage (new Gtk::Button ());
|
||||
saveimgas->set_relief(Gtk::RELIEF_NONE);
|
||||
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 ("gears.png"));
|
||||
queueimg = Gtk::manage (new Gtk::Button ());
|
||||
queueimg->set_relief(Gtk::RELIEF_NONE);
|
||||
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 ("palette-brush.png"));
|
||||
sendtogimp = Gtk::manage (new Gtk::Button ());
|
||||
sendtogimp->set_relief(Gtk::RELIEF_NONE);
|
||||
sendtogimp->add (*sendToEditorButtonImage);
|
||||
sendtogimp->set_tooltip_markup (M ("MAIN_BUTTON_SENDTOEDITOR_TOOLTIP"));
|
||||
setExpandAlignProperties (sendtogimp, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_FILL);
|
||||
|
Reference in New Issue
Block a user