Skip to content

Commit 594646a

Browse files
committed
Fix indentation
1 parent f9ed6a9 commit 594646a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/ShellClients/HideTracker.vala

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -222,23 +222,23 @@ public class Gala.HideTracker : Object {
222222
}
223223

224224
private void trigger_hide () {
225-
// Don't hide if we have transients, e.g. an open popover, dialog, etc.
226-
var has_transients = false;
227-
panel.window.foreach_transient (() => {
228-
has_transients = true;
229-
return false;
230-
});
225+
// Don't hide if we have transients, e.g. an open popover, dialog, etc.
226+
var has_transients = false;
227+
panel.window.foreach_transient (() => {
228+
has_transients = true;
229+
return false;
230+
});
231231

232-
if (has_transients) {
233-
reset_hide_timeout ();
232+
if (has_transients) {
233+
reset_hide_timeout ();
234234

235-
return;
236-
}
235+
return;
236+
}
237237

238-
hide_timeout_id = Timeout.add_once (HIDE_DELAY, () => {
239-
hide ();
240-
hide_timeout_id = 0;
241-
});
238+
hide_timeout_id = Timeout.add_once (HIDE_DELAY, () => {
239+
hide ();
240+
hide_timeout_id = 0;
241+
});
242242
}
243243

244244
private void reset_hide_timeout () {

0 commit comments

Comments
 (0)