added remove selection keys

This commit is contained in:
Dmitriy Yefremov
2018-01-25 21:43:48 +03:00
parent 1d6022b6db
commit 728bfd0b20
2 changed files with 6 additions and 2 deletions

View File

@@ -5,14 +5,16 @@ Experimental support of Neutrino-MP or others on the same basis (BPanther, etc).
Focused on the convenience of working in lists from the keyboard. The mouse is also fully supported (Drag and Drop etc)
Keyboard shortcuts:
Ctrl + X, C, V, Up, Down, PageUp, PageDown, S, T, E, L, H, Space; Insert, Delete, F2.
Ctrl + X, C, V, Up, Down, PageUp, PageDown, S, T, E, L, H, Space; Insert, Delete, F2.
Insert - copies the selected channels from the main list to the bouquet or inserts (creates) a new bouquet.
Ctrl + X - only in bouquet list. Ctrl + C - only in services list.
Clipboard is "rubber". There is an accumulation before the insertion!
Ctrl + E, F2 - edit/rename.
Ctrl + S, T, E in Satellites edit tool for create and edit satellite or transponder.
Ctrl + L - parental lock.
Ctrl + H - hide/skip.
Ctrl + H - hide/skip.
Left/Right - remove selection.
Multiple selections in lists only with Space key (as in file managers)!
Extra:

View File

@@ -678,6 +678,8 @@ class MainAppWindow:
self.on_edit(view)
elif key == Gdk.KEY_space and model_name == self._FAV_LIST_NAME:
pass
elif key == Gdk.KEY_Left or key == Gdk.KEY_Right:
view.do_unselect_all(view)
def on_download(self, item):
show_download_dialog(transient=self.__main_window,