only wait 1/2 a second for sync reply
This commit is contained in:
parent
9577bb9a65
commit
d755060a09
1 changed files with 21 additions and 0 deletions
|
@ -65,6 +65,9 @@ static ObPopup *popup = NULL;
|
||||||
|
|
||||||
static void do_edge_warp(gint x, gint y);
|
static void do_edge_warp(gint x, gint y);
|
||||||
static void cancel_edge_warp();
|
static void cancel_edge_warp();
|
||||||
|
#ifdef SYNC
|
||||||
|
static gboolean sync_timeout_func(gpointer data);
|
||||||
|
#endif
|
||||||
|
|
||||||
static void client_dest(ObClient *client, gpointer data)
|
static void client_dest(ObClient *client, gpointer data)
|
||||||
{
|
{
|
||||||
|
@ -251,6 +254,8 @@ void moveresize_end(gboolean cancel)
|
||||||
XSyncDestroyAlarm(ob_display, moveresize_alarm);
|
XSyncDestroyAlarm(ob_display, moveresize_alarm);
|
||||||
moveresize_alarm = None;
|
moveresize_alarm = None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ob_main_loop_timeout_remove(ob_main_loop, sync_timeout_func);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
client_configure(moveresize_client,
|
client_configure(moveresize_client,
|
||||||
|
@ -286,6 +291,7 @@ static void do_move(gboolean keyboard, gint keydist)
|
||||||
moveresize_client->frame->area.y);
|
moveresize_client->frame->area.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void do_resize()
|
static void do_resize()
|
||||||
{
|
{
|
||||||
gint x, y, w, h, lw, lh;
|
gint x, y, w, h, lw, lh;
|
||||||
|
@ -333,6 +339,11 @@ static void do_resize()
|
||||||
NoEventMask, &ce);
|
NoEventMask, &ce);
|
||||||
|
|
||||||
waiting_for_sync = TRUE;
|
waiting_for_sync = TRUE;
|
||||||
|
|
||||||
|
ob_main_loop_timeout_remove(ob_main_loop, sync_timeout_func);
|
||||||
|
ob_main_loop_timeout_add(ob_main_loop, G_USEC_PER_SEC / 2,
|
||||||
|
sync_timeout_func,
|
||||||
|
NULL, NULL, NULL);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -350,6 +361,16 @@ static void do_resize()
|
||||||
moveresize_client->logical_size.height);
|
moveresize_client->logical_size.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef SYNC
|
||||||
|
static gboolean sync_timeout_func(gpointer data)
|
||||||
|
{
|
||||||
|
waiting_for_sync = FALSE; /* we timed out waiting for our sync... */
|
||||||
|
do_resize(); /* ...so let any pending resizes through */
|
||||||
|
|
||||||
|
return FALSE; /* don't repeat */
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void calc_resize(gboolean keyboard, gint keydist, gint *dw, gint *dh,
|
static void calc_resize(gboolean keyboard, gint keydist, gint *dw, gint *dh,
|
||||||
ObCorner cor)
|
ObCorner cor)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue