Make inspector window size consistent

This commit is contained in:
Lawrence Lee
2021-05-08 11:15:41 -07:00
parent b2988ddbb3
commit 36cb32b31b
4 changed files with 21 additions and 11 deletions

View File

@@ -2515,10 +2515,10 @@ bool FileCatalog::handleShortcutKey (GdkEventKey* event)
if (!ctrl && !alt) {
switch (event->keyval) {
case GDK_KEY_f:
fileBrowser->getInspector()->showWindow(true);
fileBrowser->getInspector()->showWindow(false, true);
return true;
case GDK_KEY_F:
fileBrowser->getInspector()->showWindow(false);
fileBrowser->getInspector()->showWindow(false, false);
return true;
}
}