FileManager: Small improvements to PropertyDialog's apply button logic

The apply button used to be enabled directly after opening the dialog.
Changes in the permissions now enable/disable the apply button as well.
This commit is contained in:
Till Mayer 2020-06-18 19:11:46 +02:00 committed by Andreas Kling
commit 5bd0015583
Notes: sideshowbarker 2024-07-19 05:33:36 +09:00
2 changed files with 7 additions and 4 deletions

View file

@ -91,6 +91,7 @@ private:
String m_name;
String m_path;
mode_t m_mode;
mode_t m_old_mode;
bool m_permissions_dirty { false };
bool m_name_dirty { false };
};