Bug fixes

This commit is contained in:
itdominator 2022-02-04 18:25:41 -06:00
parent f77becc21c
commit eafc8613e6
2 changed files with 2 additions and 2 deletions

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