Skip to content

Commit 77b8467

Browse files
authored
Update ShellClientsManager.vala
1 parent 58af398 commit 77b8467

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/ShellClients/ShellClientsManager.vala

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,6 @@ public class Gala.ShellClientsManager : Object {
183183
windows[window].set_hide_mode (hide_mode);
184184
}
185185

186-
<<<<<<< leolost/make-modal
187-
public void make_modal (Meta.Window window, bool dim) {
188-
wm.modal_actor.make_modal (window, dim);
189-
=======
190186
public void make_centered (Meta.Window window) {
191187
if (window in centered_windows) {
192188
return;
@@ -197,6 +193,10 @@ public class Gala.ShellClientsManager : Object {
197193
window.unmanaging.connect_after (() => centered_windows.remove (window));
198194
}
199195

196+
public void make_modal (Meta.Window window, bool dim) {
197+
wm.modal_actor.make_modal (window, dim);
198+
}
199+
200200
public bool is_positioned_window (Meta.Window window) {
201201
bool positioned = (window in centered_windows) || (window in windows);
202202
window.foreach_ancestor ((ancestor) => {
@@ -267,6 +267,5 @@ public class Gala.ShellClientsManager : Object {
267267
break;
268268
}
269269
}
270-
>>>>>>> main
271270
}
272271
}

0 commit comments

Comments
 (0)