@LarsGit223 commented on this pull request.


In src/editor.c:

> @@ -352,6 +353,20 @@ static gboolean on_editor_button_press_event(GtkWidget *widget, GdkEventButton *
 
 		return TRUE;
 	}
+
+	else if (event->button == 8 /*backwards*/ && editor_prefs.mouse_back_forward_enabled)
+	{
+		navqueue_go_back();
+	}
+
+	else if (event->button == 9 /*forwards*/ && editor_prefs.mouse_back_forward_enabled)

Same thing here.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.