Bringing to latest changes #3

Merged
itdominator merged 41 commits from develop into master 2022-07-16 19:14:30 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit eafc8613e6 - Show all commits

View File

@ -89,7 +89,7 @@ class KeyboardSignalsMixin:
if self.ctrlDown and keyname == "h":
self.show_hide_hidden_files()
if (self.ctrlDown and keyname == "e"):
self.edit_files()
self.rename_files()
if self.ctrlDown and keyname == "c":
self.to_cut_files.clear()
self.copy_files()

View File

@ -21,7 +21,7 @@ class Trash(object):
if os.path.isfile(item):
size = size + os.path.getsize(item)
elif os.path.isdir(item):
size = size + size_dir(item)
size = size + self.size_dir(item)
return size