[Xfce4-commits] r22941 - xfwm4/trunk/src
Olivier Fourdan
olivier at xfce.org
Wed Aug 30 06:17:48 UTC 2006
Author: olivier
Date: 2006-08-30 06:17:47 +0000 (Wed, 30 Aug 2006)
New Revision: 22941
Modified:
xfwm4/trunk/src/client.c
Log:
Reverting the removal of window size/position indicator
Modified: xfwm4/trunk/src/client.c
===================================================================
--- xfwm4/trunk/src/client.c 2006-08-30 06:03:13 UTC (rev 22940)
+++ xfwm4/trunk/src/client.c 2006-08-30 06:17:47 UTC (rev 22941)
@@ -3770,13 +3770,9 @@
passdata.poswin = NULL;
#ifdef SHOW_POSITION
- if (!screen_info->params->box_move)
- {
- passdata.poswin = poswinCreate(screen_info->gscr);
- poswinSetPosition (passdata.poswin, c);
- poswinShow (passdata.poswin);
- }
- else
+ passdata.poswin = poswinCreate(screen_info->gscr);
+ poswinSetPosition (passdata.poswin, c);
+ poswinShow (passdata.poswin);
#endif /* SHOW_POSITION */
/* Set window translucent while moving, looks nice */
@@ -4291,7 +4287,7 @@
passdata.poswin = NULL;
#ifndef SHOW_POSITION
- if (((c->size->width_inc > 1) || (c->size->height_inc > 1)) && (!screen_info->params->box_resize))
+ if ((c->size->width_inc > 1) || (c->size->height_inc > 1))
#endif /* SHOW_POSITION */
{
passdata.poswin = poswinCreate(screen_info->gscr);
More information about the Xfce4-commits
mailing list