diff options
| author | gustav_b <gustav_b@users.sourceforge.net> | 2007-01-07 23:37:47 +0000 |
|---|---|---|
| committer | gustav_b <gustav_b@users.sourceforge.net> | 2007-01-07 23:37:47 +0000 |
| commit | 89a2b072cb12a1669ea55ff2453f9b0138c33fab (patch) | |
| tree | f13cf8fba207d7b46c1ce7ec1e1030848506c01f /src | |
| parent | force full redraw every 5 interruptions when dragging knots; disconnect knot ... (diff) | |
| download | inkscape-89a2b072cb12a1669ea55ff2453f9b0138c33fab.tar.gz inkscape-89a2b072cb12a1669ea55ff2453f9b0138c33fab.zip | |
Fix for 1502439, annoying GTK warning: "Gtk-CRITICAL **: gtk_style_detach: assertion:style->"
(bzr r2152)
Diffstat (limited to 'src')
| -rw-r--r-- | src/display/sp-canvas.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/display/sp-canvas.cpp b/src/display/sp-canvas.cpp index 3247a3e1f..bee5dfc3f 100644 --- a/src/display/sp-canvas.cpp +++ b/src/display/sp-canvas.cpp @@ -1091,6 +1091,8 @@ sp_canvas_realize (GtkWidget *widget) if ( prefs_get_int_attribute ("options.useextinput", "value", 1) ) gtk_widget_set_events(widget, attributes.event_mask); + widget->style = gtk_style_attach (widget->style, widget->window); + GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); canvas->pixmap_gc = gdk_gc_new (SP_CANVAS_WINDOW (canvas)); |
