summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-04-18 18:23:06 +0000
committerJabiertxo Arraiza Zenotz <jtx@jtx.marker.es>2013-04-18 18:23:06 +0000
commit47916db8fc9480b10be18d517d7352d2ce8821a5 (patch)
tree6454bb8e77f609b87ae852ce0b4cb98069df60ea /src
parentupdates to colors (diff)
parentChange symbols icon and give minimum size for dialog (diff)
downloadinkscape-47916db8fc9480b10be18d517d7352d2ce8821a5.tar.gz
inkscape-47916db8fc9480b10be18d517d7352d2ce8821a5.zip
updates to colors
(bzr r11950.1.98)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/symbols.cpp3
-rw-r--r--src/verbs.cpp2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp
index dfc92774c..5bc3ae91b 100644
--- a/src/ui/dialog/symbols.cpp
+++ b/src/ui/dialog/symbols.cpp
@@ -148,6 +148,9 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
//iconView->set_text_column( columns->symbol_id );
iconView->set_tooltip_column( 1 );
iconView->set_pixbuf_column( columns->symbol_image );
+ // Giving the iconview a small minimum size will help users understand
+ // What the dialog does.
+ iconView->set_size_request( 100, 32 );
std::vector< Gtk::TargetEntry > targets;
targets.push_back(Gtk::TargetEntry( "application/x-inkscape-paste"));
diff --git a/src/verbs.cpp b/src/verbs.cpp
index b8e72bc9b..4777e168c 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2753,7 +2753,7 @@ Verb *Verb::_base_verbs[] = {
new DialogVerb(SP_VERB_DIALOG_SWATCHES, "DialogSwatches", N_("S_watches..."),
N_("Select colors from a swatches palette"), GTK_STOCK_SELECT_COLOR),
new DialogVerb(SP_VERB_DIALOG_SYMBOLS, "DialogSymbols", N_("S_ymbols..."),
- N_("Select symbol from a symbols palette"), GTK_STOCK_SELECT_COLOR),
+ N_("Select symbol from a symbols palette"), INKSCAPE_ICON("symbols")),
new DialogVerb(SP_VERB_DIALOG_TRANSFORM, "DialogTransform", N_("Transfor_m..."),
N_("Precisely control objects' transformations"), INKSCAPE_ICON("dialog-transform")),
new DialogVerb(SP_VERB_DIALOG_ALIGN_DISTRIBUTE, "DialogAlignDistribute", N_("_Align and Distribute..."),