summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/export.cpp
diff options
context:
space:
mode:
authorsu_v <suv-sf@users.sourceforge.net>2012-09-02 05:21:21 +0000
committer~suv <suv-sf@users.sourceforge.net>2012-09-02 05:21:21 +0000
commitfc86f9fa73865bf1c1160c6aeb0ff63cd4d91cb3 (patch)
tree1319126e35b5d158bf531a0dce1a99e6c8bc6574 /src/ui/dialog/export.cpp
parentFix for 306090 : XMl Editor, Return button to create new xml element (diff)
downloadinkscape-fc86f9fa73865bf1c1160c6aeb0ff63cd4d91cb3.tar.gz
inkscape-fc86f9fa73865bf1c1160c6aeb0ff63cd4d91cb3.zip
Export dialog: change markup formatting of labels to be consistent with other dialogs
(bzr r11642)
Diffstat (limited to 'src/ui/dialog/export.cpp')
-rw-r--r--src/ui/dialog/export.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp
index 1f10a850a..62dd93126 100644
--- a/src/ui/dialog/export.cpp
+++ b/src/ui/dialog/export.cpp
@@ -163,7 +163,7 @@ Export::Export (void) :
/* Export area frame */
{
- Gtk::Label* lbl = new Gtk::Label(_("<big><b>Export area</b></big>"), Gtk::ALIGN_START);
+ Gtk::Label* lbl = new Gtk::Label(_("<b>Export area</b>"), Gtk::ALIGN_START);
lbl->set_use_markup(true);
area_box.pack_start(*lbl);
@@ -228,7 +228,7 @@ Export::Export (void) :
/* Bitmap size frame */
{
size_box.set_border_width(3);
- bm_label = new Gtk::Label(_("<big><b>Image size</b></big>"), Gtk::ALIGN_START);
+ bm_label = new Gtk::Label(_("<b>Image size</b>"), Gtk::ALIGN_START);
bm_label->set_use_markup(true);
size_box.pack_start(*bm_label, false, false, 0);
Gtk::Table *t = new Gtk::Table(2, 5, false);
@@ -265,7 +265,7 @@ Export::Export (void) :
/* File entry */
{
file_box.set_border_width(3);
- flabel = new Gtk::Label(_("<big><b>_Filename</b></big>"), Gtk::ALIGN_START, Gtk::ALIGN_CENTER, true);
+ flabel = new Gtk::Label(_("<b>_Filename</b>"), Gtk::ALIGN_START, Gtk::ALIGN_CENTER, true);
flabel->set_use_markup(true);
file_box.pack_start(*flabel, false, false, 0);