@@ -745,7 +745,7 @@ std::string Configurator::Log() const {
745745 }
746746
747747 log += format (" - Use system tray: %s\n " , this ->use_system_tray ? " true" : " false" );
748- log += format (" - Use layer developer mode: %s\n " , this ->use_layer_dev_mode ? " true" : " false" );
748+ log += format (" - Use layer developer mode: %s\n " , this ->use_layer_debug_mode ? " true" : " false" );
749749 log += format (" - ${VULKAN_BIN}: %s\n " , ::Path (Path::BIN ).AbsolutePath ().c_str ());
750750 log += format (" - ${VULKAN_PROFILES}: %s\n " , ::Path (Path::PROFILES ).AbsolutePath ().c_str ());
751751 log += format (" - ${VULKAN_HOME}: %s\n " , ::Path (Path::HOME ).AbsolutePath ().c_str ());
@@ -971,8 +971,8 @@ bool Configurator::Load() {
971971 if (json_interface_object.value (GetToken (TAB_PREFERENCES )) != QJsonValue::Undefined) {
972972 const QJsonObject& json_object = json_interface_object.value (GetToken (TAB_PREFERENCES )).toObject ();
973973
974- if (json_object.value (" use_layer_dev_mode " ) != QJsonValue::Undefined) {
975- this ->use_layer_dev_mode = json_object.value (" use_layer_dev_mode " ).toBool ();
974+ if (json_object.value (" use_layer_debug_mode " ) != QJsonValue::Undefined) {
975+ this ->use_layer_debug_mode = json_object.value (" use_layer_debug_mode " ).toBool ();
976976 }
977977
978978 if (json_object.value (" use_notify_releases" ) != QJsonValue::Undefined) {
@@ -1053,7 +1053,7 @@ bool Configurator::Save() const {
10531053 {
10541054 QJsonObject json_object;
10551055 json_object.insert (" use_system_tray" , this ->use_system_tray );
1056- json_object.insert (" use_layer_dev_mode " , this ->use_layer_dev_mode );
1056+ json_object.insert (" use_layer_debug_mode " , this ->use_layer_debug_mode );
10571057 json_object.insert (" use_notify_releases" , this ->use_notify_releases );
10581058 json_object.insert (" latest_sdk_version" , this ->latest_sdk_version .str ().c_str ());
10591059 json_object.insert (" last_vkconfig_version" , Version::VKCONFIG .str ().c_str ());
@@ -1122,9 +1122,9 @@ bool Configurator::GetUseSystemTray() const { return this->use_system_tray; }
11221122
11231123void Configurator::SetUseSystemTray (bool enabled) { this ->use_system_tray = enabled; }
11241124
1125- bool Configurator::GetUseLayerDevMode () const { return this ->use_layer_dev_mode ; }
1125+ bool Configurator::GetUseLayerDebugMode () const { return this ->use_layer_debug_mode ; }
11261126
1127- void Configurator::SetUseLayerDevMode (bool enabled) { this ->use_layer_dev_mode = enabled; }
1127+ void Configurator::SetUseLayerDebugMode (bool enabled) { this ->use_layer_debug_mode = enabled; }
11281128
11291129bool Configurator::GetUseNotifyReleases () const { return this ->use_notify_releases ; }
11301130
0 commit comments