We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ca2b5c commit dc71f60Copy full SHA for dc71f60
src/guake
@@ -1207,6 +1207,12 @@ class Guake(SimpleGladeApp):
1207
box.terminal.connect('drag-data-received',
1208
self.on_drag_data_received,
1209
box)
1210
+
1211
+ #-- Ubuntu has a patch to libvte which disables mouse scrolling in apps
1212
+ #-- like vim and less by default. If this is the case, enable it back.
1213
+ if hasattr(box.terminal, "set_alternate_screen_scroll"):
1214
+ box.terminal.set_alternate_screen_scroll(True)
1215
1216
box.show()
1217
1218
self.term_list.append(box.terminal)
0 commit comments