diff options
author | saturneric <[email protected]> | 2024-04-21 19:49:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-04-21 19:49:04 +0000 |
commit | 571a2906063739067e40a02aadd8c265082359de (patch) | |
tree | 5ac57f777ec38f6a5f328da4e3df6ad6cc010aff /src/ui/widgets/FileTreeView.h | |
parent | fix: could not determine the path to the executable based on the desktop file (diff) | |
parent | feat: adapt linux appimage of modules loading (diff) | |
download | GpgFrontend-571a2906063739067e40a02aadd8c265082359de.tar.gz GpgFrontend-571a2906063739067e40a02aadd8c265082359de.zip |
Merge branch 'dev/2.1.2/module' into develop
Diffstat (limited to 'src/ui/widgets/FileTreeView.h')
-rw-r--r-- | src/ui/widgets/FileTreeView.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/widgets/FileTreeView.h b/src/ui/widgets/FileTreeView.h index cd3b1cb8..b1cc8897 100644 --- a/src/ui/widgets/FileTreeView.h +++ b/src/ui/widgets/FileTreeView.h @@ -219,6 +219,12 @@ class FileTreeView : public QTreeView { */ void slot_create_popup_menu(); + /** + * @brief + * + */ + void slot_adjust_column_widths(); + private: QFileSystemModel* dir_model_; ///< QString current_path_; ///< @@ -233,5 +239,7 @@ class FileTreeView : public QTreeView { QAction* action_create_empty_file_; QAction* action_make_directory_; QAction* action_compress_files_; + + bool initial_resize_done_ = false; }; } // namespace GpgFrontend::UI
\ No newline at end of file |