diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 06d598f97dc..b6a7f32fdf8 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -8224,11 +8224,11 @@ EditorNode::EditorNode() { settings_menu->add_separator(); #ifndef ANDROID_ENABLED - if (OS::get_singleton()->get_data_path() == OS::get_singleton()->get_config_path()) { - // Configuration and data folders are located in the same place (Windows/macOS). + if (EditorPaths::get_singleton()->get_data_dir() == EditorPaths::get_singleton()->get_config_dir()) { + // Configuration and data folders are located in the same place. settings_menu->add_item(TTRC("Open Editor Data/Settings Folder"), EDITOR_OPEN_DATA_FOLDER); } else { - // Separate configuration and data folders (Linux). + // Separate configuration and data folders. settings_menu->add_item(TTRC("Open Editor Data Folder"), EDITOR_OPEN_DATA_FOLDER); settings_menu->add_item(TTRC("Open Editor Settings Folder"), EDITOR_OPEN_CONFIG_FOLDER); }