diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-02-15 21:46:24 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-02-15 21:46:24 +0000 |
| commit | 3fed53c45d21ce557dce84a2d7770639e01e0078 (patch) | |
| tree | c9658cf66177b356a63d3d0ec8c1c05df872f727 /src | |
| parent | * src/main.cpp: Allow the user to override the locale directory by (diff) | |
| download | inkscape-3fed53c45d21ce557dce84a2d7770639e01e0078.tar.gz inkscape-3fed53c45d21ce557dce84a2d7770639e01e0078.zip | |
spell out Fill and Stroke labels
(bzr r2377)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/widget/selected-style.cpp | 8 | ||||
| -rw-r--r-- | src/widgets/widget-sizes.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 851ddc78d..eca474ea7 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -89,8 +89,8 @@ SelectedStyle::SelectedStyle(bool layout) : _desktop (NULL), _table(2, 6), - _fill_label (_("F:")), - _stroke_label (_("S:")), + _fill_label (_("Fill:")), + _stroke_label (_("Stroke:")), _opacity_label (_("O:")), _fill_place (), _stroke_place (), @@ -319,8 +319,8 @@ SelectedStyle::SelectedStyle(bool layout) _opacity_sb.set_size_request (SELECTED_STYLE_SB_WIDTH, -1); _opacity_sb.set_sensitive (false); - _table.attach(_fill_label, 0,1, 0,1, Gtk::SHRINK, Gtk::SHRINK); - _table.attach(_stroke_label, 0,1, 1,2, Gtk::SHRINK, Gtk::SHRINK); + _table.attach(_fill_label, 0,1, 0,1, Gtk::FILL, Gtk::SHRINK); + _table.attach(_stroke_label, 0,1, 1,2, Gtk::FILL, Gtk::SHRINK); _table.attach(_fill_flag_place, 1,2, 0,1, Gtk::SHRINK, Gtk::SHRINK); _table.attach(_stroke_flag_place, 1,2, 1,2, Gtk::SHRINK, Gtk::SHRINK); diff --git a/src/widgets/widget-sizes.h b/src/widgets/widget-sizes.h index c3290a8e2..c63890bd0 100644 --- a/src/widgets/widget-sizes.h +++ b/src/widgets/widget-sizes.h @@ -30,8 +30,8 @@ #define STATUS_ZOOM_WIDTH 57 #define SELECTED_STYLE_SB_WIDTH 38 -#define SELECTED_STYLE_WIDTH 150 -#define STYLE_SWATCH_WIDTH 80 +#define SELECTED_STYLE_WIDTH 180 +#define STYLE_SWATCH_WIDTH 100 #define STATUS_LAYER_FONT_SIZE 7700 |
