don't set variables twice
This commit is contained in:
parent
07f5240d8c
commit
ae0971659f
1 changed files with 2 additions and 2 deletions
|
@ -494,8 +494,8 @@ void client_manage(Window window, ObPrompt *prompt)
|
|||
activate ? "yes" : "no");
|
||||
if (activate) {
|
||||
gboolean raise = FALSE;
|
||||
gboolean relative_focused = FALSE;
|
||||
gboolean parent_focused = FALSE;
|
||||
gboolean relative_focused;
|
||||
gboolean parent_focused;
|
||||
|
||||
parent_focused = (focus_client != NULL &&
|
||||
client_search_focus_parent(self));
|
||||
|
|
Loading…
Reference in a new issue