diff options
author | saturneric <[email protected]> | 2024-02-29 14:36:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-02-29 14:36:25 +0000 |
commit | 84b04d88723ef05f7873082c235ecfd56facf934 (patch) | |
tree | 286ffac004c265169931102fbc1f68a13da110fa /src/ui/widgets/ModuleListView.cpp | |
parent | feat: add module controller and continue to work on module system (diff) | |
download | GpgFrontend-84b04d88723ef05f7873082c235ecfd56facf934.tar.gz GpgFrontend-84b04d88723ef05f7873082c235ecfd56facf934.zip |
feat: add prefix GF to all sdk and module symbols
Diffstat (limited to 'src/ui/widgets/ModuleListView.cpp')
-rw-r--r-- | src/ui/widgets/ModuleListView.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/widgets/ModuleListView.cpp b/src/ui/widgets/ModuleListView.cpp index 05e4c021..41c8b259 100644 --- a/src/ui/widgets/ModuleListView.cpp +++ b/src/ui/widgets/ModuleListView.cpp @@ -35,6 +35,7 @@ namespace GpgFrontend::UI { ModuleListView::ModuleListView(QWidget *parent) : QListView(parent), model_(new QStringListModel(this)) { setModel(model_); + setEditTriggers(QAbstractItemView::NoEditTriggers); load_module_informations(); } |