Skip to content

Commit 457db9b

Browse files
committed
Don't follow links on Meta+Click
1 parent a1b85df commit 457db9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Edit/Interface/edit_mouse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ edit_interface_rep::mouse_drag (SI x, SI y) {
126126
void
127127
edit_interface_rep::mouse_select (SI x, SI y, int mods, bool drag) {
128128
if (eb->action ("select" , x, y, 0) != "") return;
129-
if (!is_nil (mouse_ids) && (mods & ShiftMask) == 0 && !drag) {
129+
if (!is_nil (mouse_ids) && (mods & (ShiftMask+Mod2Mask)) == 0 && !drag) {
130130
call ("link-follow-ids", object (mouse_ids), object ("click"));
131131
disable_double_clicks ();
132132
return;

0 commit comments

Comments
 (0)