Fixed double click issue when initially one selected
This commit is contained in:
parent
b488c989b2
commit
a9ab9e95d8
|
@ -1,5 +1,6 @@
|
|||
# Python imports
|
||||
import builtins, threading
|
||||
import builtins
|
||||
import threading
|
||||
|
||||
# Lib imports
|
||||
|
||||
|
|
|
@ -127,6 +127,7 @@ class FileActionSignalsMixin:
|
|||
def open_files(self):
|
||||
state = self.get_current_state()
|
||||
uris = self.format_to_uris(state.store, state.wid, state.tid, self.selected_files, True)
|
||||
|
||||
for file in uris:
|
||||
state.tab.open_file_locally(file)
|
||||
|
||||
|
|
|
@ -171,15 +171,12 @@ class WindowMixin(TabMixin):
|
|||
if self.dnd_left_primed > 1:
|
||||
self.dnd_left_primed = 0
|
||||
self.selected_files.clear()
|
||||
return
|
||||
|
||||
# NOTE: Likely trying dnd, just readd to selection the former set.
|
||||
# Prevents losing highlighting of grid selected.
|
||||
for path in self.selected_files:
|
||||
icons_grid.select_path(path)
|
||||
|
||||
return
|
||||
|
||||
if size > 0:
|
||||
self.selected_files = icons_grid.get_selected_items()
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue