Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(2/5) Multiple Issues: Snap monitors after mouse button release #181

Merged
merged 18 commits into from
Sep 29, 2019
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simplify event connection
  • Loading branch information
felix-andreas committed Sep 24, 2019
commit bacaf980ebdafd897813b3b0b9be448ce5c5e465
2 changes: 1 addition & 1 deletion src/Widgets/DisplaysOverlay.vala
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public class Display.DisplaysOverlay : Gtk.Overlay {
display_widget.show_all ();
display_widget.set_as_primary.connect (() => set_as_primary (display_widget.virtual_monitor));
display_widget.check_position.connect (() => check_intersects (display_widget));
display_widget.move_display.connect ((diff_x, diff_y) => move_display (display_widget, diff_x, diff_y));
display_widget.move_display.connect (move_display);
display_widget.configuration_changed.connect (() => check_configuration_changed ());
display_widget.active_changed.connect (() => {
active_displays += virtual_monitor.is_active ? 1 : -1;
Expand Down