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/ui/widget/selected-style.cpp | |
| 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/ui/widget/selected-style.cpp')
| -rw-r--r-- | src/ui/widget/selected-style.cpp | 8 |
1 files changed, 4 insertions, 4 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); |
