projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ce8f83
)
dont assert if a moveresize is started while one is in progress. apps could do this...
author
Dana Jansens
<danakj@orodu.net>
Tue, 16 Sep 2003 08:02:13 +0000
(08:02 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Tue, 16 Sep 2003 08:02:13 +0000
(08:02 +0000)
openbox/moveresize.c
patch
|
blob
|
history
diff --git
a/openbox/moveresize.c
b/openbox/moveresize.c
index 447869aa29435a56399042cc501f49ba6b7a3430..6a0e97776514c67d9badf16242413af2e864f217 100644
(file)
--- a/
openbox/moveresize.c
+++ b/
openbox/moveresize.c
@@
-72,9
+72,7
@@
void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr)
{
ObCursor cur;
- g_assert(!moveresize_in_progress);
-
- if (!c->frame->visible)
+ if (moveresize_in_progress || !c->frame->visible)
return;
moveresize_client = c;