Tweaked crosshair icon, #4469
This commit is contained in:
@@ -51,7 +51,7 @@ void CursorManager::init (Glib::RefPtr<Gdk::Window> mainWindow)
|
||||
cAdd = Gdk::Cursor::create (display, Gdk::PLUS);
|
||||
cWait = Gdk::Cursor::create (display, Gdk::CLOCK);
|
||||
|
||||
Glib::RefPtr<Gdk::Pixbuf> hand = RTImage::createFromFile ("crosshair1.png");
|
||||
Glib::RefPtr<Gdk::Pixbuf> hand = RTImage::createFromFile ("crosshair.png");
|
||||
Glib::RefPtr<Gdk::Pixbuf> close_hand = RTImage::createFromFile ("hand-closed.png");
|
||||
Glib::RefPtr<Gdk::Pixbuf> wbpick = RTImage::createFromFile ("color-picker.png");
|
||||
Glib::RefPtr<Gdk::Pixbuf> cpick = RTImage::createFromFile ("color-picker-add.png");
|
||||
|
@@ -69,7 +69,7 @@ DiagonalCurveEditorSubGroup::DiagonalCurveEditorSubGroup (CurveEditorGroup* prt,
|
||||
editPointCustom = Gtk::manage (new Gtk::ToggleButton ());
|
||||
initButton(*editPointCustom, Glib::ustring("edit-point.png"), Gtk::ALIGN_START, false, "CURVEEDITOR_EDITPOINT_HINT");
|
||||
editCustom = Gtk::manage (new Gtk::ToggleButton());
|
||||
initButton(*editCustom, Glib::ustring("crosshair1-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
initButton(*editCustom, Glib::ustring("crosshair-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
editCustom->hide();
|
||||
copyCustom = Gtk::manage (new Gtk::Button ());
|
||||
initButton(*copyCustom, Glib::ustring("copy.png"), Gtk::ALIGN_END, true);
|
||||
@@ -146,7 +146,7 @@ DiagonalCurveEditorSubGroup::DiagonalCurveEditorSubGroup (CurveEditorGroup* prt,
|
||||
editPointNURBS = Gtk::manage (new Gtk::ToggleButton ());
|
||||
initButton(*editPointNURBS, Glib::ustring("edit-point.png"), Gtk::ALIGN_START, false, "CURVEEDITOR_EDITPOINT_HINT");
|
||||
editNURBS = Gtk::manage (new Gtk::ToggleButton());
|
||||
initButton(*editNURBS, Glib::ustring("crosshair1-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
initButton(*editNURBS, Glib::ustring("crosshair-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
editNURBS->hide();
|
||||
copyNURBS = Gtk::manage (new Gtk::Button ());
|
||||
initButton(*copyNURBS, Glib::ustring("copy.png"), Gtk::ALIGN_END, true);
|
||||
@@ -224,7 +224,7 @@ DiagonalCurveEditorSubGroup::DiagonalCurveEditorSubGroup (CurveEditorGroup* prt,
|
||||
shcSelector->set_name("CurveSHCSelector"); // To handle the 4px gap between the SHCSelector and the curve through CSS
|
||||
|
||||
editParam = Gtk::manage (new Gtk::ToggleButton());
|
||||
initButton(*editParam, Glib::ustring("crosshair1-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
initButton(*editParam, Glib::ustring("crosshair-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
editParam->hide();
|
||||
copyParam = Gtk::manage (new Gtk::Button ());
|
||||
initButton(*copyParam, Glib::ustring("copy.png"), Gtk::ALIGN_END, true);
|
||||
|
@@ -63,7 +63,7 @@ FlatCurveEditorSubGroup::FlatCurveEditorSubGroup (CurveEditorGroup* prt, Glib::u
|
||||
}
|
||||
|
||||
editCPoints = Gtk::manage (new Gtk::ToggleButton());
|
||||
initButton(*editCPoints, Glib::ustring("crosshair1-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
initButton(*editCPoints, Glib::ustring("crosshair-adjust.png"), Gtk::ALIGN_START, false, "EDIT_PIPETTE_TOOLTIP");
|
||||
editPointCPoints = Gtk::manage (new Gtk::ToggleButton ());
|
||||
initButton(*editPointCPoints, Glib::ustring("edit-point.png"), Gtk::ALIGN_START, false, "CURVEEDITOR_EDITPOINT_HINT");
|
||||
copyCPoints = Gtk::manage (new Gtk::Button ());
|
||||
|
@@ -13,7 +13,7 @@ Gradient::Gradient () : FoldableToolPanel(this, "gradient", M("TP_GRADIENT_LABEL
|
||||
|
||||
editHBox = Gtk::manage (new Gtk::HBox());
|
||||
edit = Gtk::manage (new Gtk::ToggleButton());
|
||||
edit->add (*Gtk::manage (new RTImage ("crosshair1-adjust.png")));
|
||||
edit->add (*Gtk::manage (new RTImage ("crosshair-adjust.png")));
|
||||
edit->set_tooltip_text(M("EDIT_OBJECT_TOOLTIP"));
|
||||
editConn = edit->signal_toggled().connect( sigc::mem_fun(*this, &Gradient::editToggled) );
|
||||
editHBox->pack_start(*edit, Gtk::PACK_SHRINK, 0);
|
||||
|
@@ -27,7 +27,7 @@ ToolBar::ToolBar () : showColPickers(true), listener (nullptr), pickerListener(n
|
||||
editingMode = false;
|
||||
|
||||
handimg.reset(new RTImage("hand-open.png"));
|
||||
editinghandimg.reset(new RTImage("crosshair1-adjust.png"));
|
||||
editinghandimg.reset(new RTImage("crosshair-adjust.png"));
|
||||
|
||||
handTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||
handTool->add (*handimg);
|
||||
|
Reference in New Issue
Block a user