app: fix uninitialized boolean in gimp_paned_box_drag_drop()
This commit is contained in:
parent
afc3d4281e
commit
dcfe0b8925
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue