mirror of https://github.com/GNOME/gimp.git
app: fix uninitialized boolean in gimp_paned_box_drag_drop()
This commit is contained in:
parent
afc3d4281e
commit
dcfe0b8925
|
@ -450,7 +450,7 @@ gimp_paned_box_drag_drop (GtkWidget *widget,
|
|||
guint time)
|
||||
{
|
||||
GimpPanedBox *paned_box = GIMP_PANED_BOX (widget);
|
||||
gboolean dropped;
|
||||
gboolean dropped = FALSE;
|
||||
|
||||
if (gimp_paned_box_will_handle_drag (paned_box->p->drag_handler,
|
||||
widget,
|
||||
|
|
Loading…
Reference in New Issue