Commit 87840b3d authored by Erik Reider's avatar Erik Reider

Fixed Control Center sometimes dismissing when clicking inside of CC

parent 14a32760
......@@ -182,7 +182,7 @@ namespace SwayNotificationCenter {
private bool blank_window_press (Gdk.Event event) {
// Calculate if the clicked coords intersect the ControlCenter
double x, y;
event.get_coords (out x, out y);
event.get_root_coords (out x, out y);
Gdk.Rectangle click_rectangle = Gdk.Rectangle () {
width = 1,
height = 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment