diff options
| author | Martin Owens <doctormo@gmail.com> | 2013-04-18 17:31:04 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2013-04-18 17:31:04 +0000 |
| commit | 7b741b16f2494156eb9c5a673fa3b008b953c25d (patch) | |
| tree | 5b8c6e4f6f7a1ec5ca78e39730d1dcf89a7e2b80 /src/ui | |
| parent | Fix for Bug #503712 (Personal default template not used) by Slagvi. (diff) | |
| download | inkscape-7b741b16f2494156eb9c5a673fa3b008b953c25d.tar.gz inkscape-7b741b16f2494156eb9c5a673fa3b008b953c25d.zip | |
Change symbols icon and give minimum size for dialog
(bzr r12278)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/symbols.cpp | 3 |
1 files changed, 3 insertions, 0 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")); |
