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:
ba7cb61
)
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>
Sat, 11 Oct 2014 00:17:19 +0000
(
02:17
+0200)
openbox/actions.c
patch
|
blob
|
history
diff --git
a/openbox/actions.c
b/openbox/actions.c
index fa8ba24c305db006c5da89096d6d977b87dd3393..b13725a695201066e36662c72df891f1d8494952 100644
(file)
--- a/
openbox/actions.c
+++ b/
openbox/actions.c
@@
-507,5
+507,5
@@
gboolean actions_client_locked(ObActionsData *data)
{
ObClient *c = data->client;
- return
c && c->locked
;
+ return
!c || (c && c->locked)
;
}