aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings_interface.cpp
diff options
context:
space:
mode:
authorConfuSomu2024-06-01 18:05:30 -0400
committerConfuSomu2024-06-01 18:07:06 -0400
commit48a338b1321d9e169c73b71c01cd2f9ba00f9c53 (patch)
treea4c991f800a7bd8bf0d33a56fc7998996c793c3b /src/settings_interface.cpp
parente3efc04807f946cc75b06ec84b4af79d66b23cce (diff)
downloadActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.tar
ActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.tar.gz
ActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.zip
Implement Recent files list and menu
Diffstat (limited to 'src/settings_interface.cpp')
-rw-r--r--src/settings_interface.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settings_interface.cpp b/src/settings_interface.cpp
index e14da92..13e2066 100644
--- a/src/settings_interface.cpp
+++ b/src/settings_interface.cpp
@@ -115,6 +115,8 @@ const QVariant default_setting(const QString &key) {
else if (key == "net/instance/address"
or key == "net/instance/token")
return "";
+ else if (key == "ui/recent_files")
+ return QStringList();
else
return -1;
}