Icons tweaked #4469

- The "light" icon theme is now a little lighter, to increase contrast.
- Toolbox icons are now small.
- Buttons:
  - Buttons without labels which use icons as their only source of info regarding what the button does (e.g. the white-balance pipette button) use normal-sized icons.
  - Labeled buttons which use icons as an auxiliary source of information (e.g. Auto-Crop) now use small icons. Curve type icons are also small even though they have no labels.
- Colored circles are smaller.
- Curve type icons redesigned and small.
- Hand icons (when panning the preview) redesigned to have a clear outline regardless of background color.
- Magnifier icons redesigned to have a thinner magnifier frame and larger inner parts.
- Perspective, distortion and crop icons redesigned.
- Some small icons were missing the `-small` suffix, now renamed.
This commit is contained in:
Morgan Hardwood
2018-07-16 12:41:40 +02:00
parent 3750b00272
commit bb6282fad3
448 changed files with 3149 additions and 570 deletions

View File

@@ -179,18 +179,18 @@ BlackWhite::BlackWhite (): FoldableToolPanel(this, "blackwhite", M("TP_BWMIX_LAB
//----------- RGB / ROYGCBPM Mixer ------------------------------
imgIcon[0] = Gtk::manage (new RTImage ("circle-red.png"));
imgIcon[1] = Gtk::manage (new RTImage ("circle-orange.png"));
imgIcon[2] = Gtk::manage (new RTImage ("circle-yellow.png"));
imgIcon[3] = Gtk::manage (new RTImage ("circle-green.png"));
imgIcon[4] = Gtk::manage (new RTImage ("circle-cyan.png"));
imgIcon[5] = Gtk::manage (new RTImage ("circle-blue.png"));
imgIcon[6] = Gtk::manage (new RTImage ("circle-purple.png"));
imgIcon[7] = Gtk::manage (new RTImage ("circle-magenta.png"));
imgIcon[0] = Gtk::manage (new RTImage ("circle-red-small.png"));
imgIcon[1] = Gtk::manage (new RTImage ("circle-orange-small.png"));
imgIcon[2] = Gtk::manage (new RTImage ("circle-yellow-small.png"));
imgIcon[3] = Gtk::manage (new RTImage ("circle-green-small.png"));
imgIcon[4] = Gtk::manage (new RTImage ("circle-cyan-small.png"));
imgIcon[5] = Gtk::manage (new RTImage ("circle-blue-small.png"));
imgIcon[6] = Gtk::manage (new RTImage ("circle-purple-small.png"));
imgIcon[7] = Gtk::manage (new RTImage ("circle-magenta-small.png"));
imgIcon[8] = Gtk::manage (new RTImage ("circle-empty-red.png"));
imgIcon[9] = Gtk::manage (new RTImage ("circle-empty-green.png"));
imgIcon[10] = Gtk::manage (new RTImage ("circle-empty-blue.png"));
imgIcon[8] = Gtk::manage (new RTImage ("circle-empty-red-small.png"));
imgIcon[9] = Gtk::manage (new RTImage ("circle-empty-green-small.png"));
imgIcon[10] = Gtk::manage (new RTImage ("circle-empty-blue-small.png"));
mixerVBox->pack_start (*Gtk::manage (new Gtk::HSeparator()));