projects
/
mikachu
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
145b38c
)
Make * not crash when something isn't focused.
author
Mikael Magnusson
<mikachu@comhem.se>
Thu, 28 Feb 2008 18:42:46 +0000
(19:42 +0100)
committer
Mikael Magnusson
<mikachu@gmail.com>
Sun, 19 Sep 2010 15:55:02 +0000
(17:55 +0200)
openbox/actions.c
patch
|
blob
|
history
diff --git
a/openbox/actions.c
b/openbox/actions.c
index a6c205260104e3fca7adbcae3f78086526f2cf39..b43d86a9e8ee4859243c6aeccb00270c91397611 100644
(file)
--- a/
openbox/actions.c
+++ b/
openbox/actions.c
@@
-471,5
+471,5
@@
gboolean actions_client_locked(ObActionsData *data)
{
ObClient *c = data->client;
- return
c && c->locked
;
+ return
!c || (c && c->locked)
;
}