diff --git a/ProcessorTargets.cmake b/ProcessorTargets.cmake index 2f932f71f..efe79626d 100644 --- a/ProcessorTargets.cmake +++ b/ProcessorTargets.cmake @@ -27,7 +27,7 @@ set(PROC_TARGET_7_LABEL athlon-4 CACHE STRING "Processor-7 label - use it to pro set(PROC_TARGET_7_FLAGS "-march=athlon-4" CACHE STRING "Processor-7 flags") set(PROC_TARGET_8_LABEL athlon64 CACHE STRING "Processor-8 label - use it to provide a athlon64 optimized build, if you have this processor") -set(PROC_TARGET_8_FLAGS "-march=pentium2 -mtune=athlon64" CACHE STRING "Processor-8 flags") +set(PROC_TARGET_8_FLAGS "-march=athlon64 -mtune=athlon64" CACHE STRING "Processor-8 flags") set(PROC_TARGET_9_LABEL phenomX4 CACHE STRING "Processor-9 label - use it to provide a phenomX4 optimized build, if you have this processor") set(PROC_TARGET_9_FLAGS "-march=amdfam10" CACHE STRING "Processor-9 flags") diff --git a/rtdata/images/crop22.png b/rtdata/images/crop22.png index 5e6af5f82..f250cc44f 100644 Binary files a/rtdata/images/crop22.png and b/rtdata/images/crop22.png differ diff --git a/rtdata/images/edited.png b/rtdata/images/edited.png index bbc0dae98..1239726f8 100644 Binary files a/rtdata/images/edited.png and b/rtdata/images/edited.png differ diff --git a/rtdata/images/info.png b/rtdata/images/info.png index 77573fdaa..0623ccbe5 100644 Binary files a/rtdata/images/info.png and b/rtdata/images/info.png differ diff --git a/rtdata/images/openhand_gray22.png b/rtdata/images/openhand_gray22.png new file mode 100644 index 000000000..1eab0d9b3 Binary files /dev/null and b/rtdata/images/openhand_gray22.png differ diff --git a/rtdata/images/panel_to_bottom.png b/rtdata/images/panel_to_bottom.png index 8397d2fac..8c4e27595 100644 Binary files a/rtdata/images/panel_to_bottom.png and b/rtdata/images/panel_to_bottom.png differ diff --git a/rtdata/images/panel_to_left.png b/rtdata/images/panel_to_left.png index 3ec0dee40..a887ec40f 100644 Binary files a/rtdata/images/panel_to_left.png and b/rtdata/images/panel_to_left.png differ diff --git a/rtdata/images/panel_to_right.png b/rtdata/images/panel_to_right.png index 5932ee4da..ae21857ec 100644 Binary files a/rtdata/images/panel_to_right.png and b/rtdata/images/panel_to_right.png differ diff --git a/rtdata/images/panel_to_top.png b/rtdata/images/panel_to_top.png index fadb526be..bd82fdd5e 100644 Binary files a/rtdata/images/panel_to_top.png and b/rtdata/images/panel_to_top.png differ diff --git a/rtdata/images/save_hdd_01.png b/rtdata/images/save_hdd_01.png new file mode 100644 index 000000000..98dc3a769 Binary files /dev/null and b/rtdata/images/save_hdd_01.png differ diff --git a/rtdata/images/warnhl.png b/rtdata/images/warnhl.png index 2f062f8f1..a8d8cfcdd 100644 Binary files a/rtdata/images/warnhl.png and b/rtdata/images/warnhl.png differ diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index 905af7e5c..7eda254e7 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -163,7 +163,8 @@ EditorPanel::EditorPanel (FilePanel* filePanel) : beforePreviewHandler(NULL), be // Save buttons Gtk::HBox* iops = Gtk::manage (new Gtk::HBox ()); - Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON)); + //Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON)); + Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (argv0+"/images/save_hdd_01.png")); saveimgas = Gtk::manage (new Gtk::Button ()); saveimgas->add(*saveButtonImage); saveimgas->set_tooltip_markup(M("MAIN_BUTTON_SAVE_TOOLTIP")); diff --git a/rtgui/toolbar.cc b/rtgui/toolbar.cc index dd0ecdae2..309fc49c0 100644 --- a/rtgui/toolbar.cc +++ b/rtgui/toolbar.cc @@ -24,7 +24,7 @@ extern Glib::ustring argv0; ToolBar::ToolBar () : listener (NULL) { handTool = Gtk::manage (new Gtk::ToggleButton ()); - Gtk::Image* handimg = Gtk::manage (new Gtk::Image (argv0+"/images/openhand22.png")); + Gtk::Image* handimg = Gtk::manage (new Gtk::Image (argv0+"/images/openhand_gray22.png")); handTool->add (*handimg); handimg->show (); handTool->set_relief(Gtk::RELIEF_NONE);