diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2012-01-02 07:09:19 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2012-01-02 07:09:19 +0000 |
| commit | 5d06030e90338d750efb1691926452e53055e959 (patch) | |
| tree | ef2b417790f5e6ca9063df6d2fddb9ba9e75010e /src/ui/dialog/glyphs.cpp | |
| parent | Replace deprecated GTK_SIGNAL_FUNC macro (diff) | |
| download | inkscape-5d06030e90338d750efb1691926452e53055e959.tar.gz inkscape-5d06030e90338d750efb1691926452e53055e959.zip | |
Fix for bugs #910463, #910467 and #910479 (default widget size too small) by John Smith.
(bzr r10818)
Diffstat (limited to 'src/ui/dialog/glyphs.cpp')
| -rw-r--r-- | src/ui/dialog/glyphs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/glyphs.cpp b/src/ui/dialog/glyphs.cpp index 6d823e6de..84b4a34bd 100644 --- a/src/ui/dialog/glyphs.cpp +++ b/src/ui/dialog/glyphs.cpp @@ -342,7 +342,7 @@ GlyphsPanel::GlyphsPanel(gchar const *prefsPath) : GtkWidget *fontsel = sp_font_selector_new(); fsel = SP_FONT_SELECTOR(fontsel); sp_font_selector_set_font(fsel, sp_font_selector_get_font(fsel), 12.0); - + gtk_widget_set_size_request (fontsel, 0, 150); g_signal_connect( G_OBJECT(fontsel), "font_set", G_CALLBACK(fontChangeCB), this ); table->attach(*Gtk::manage(Glib::wrap(fontsel)), |
