diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-02-24 01:20:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-24 01:20:50 +0100 |
commit | ed0d1a440474d862bca9d05645f46fda8d4c43b4 (patch) | |
tree | 34c7229b46c05fed059617d23432471fc1ca352d /editor/export_template_manager.cpp | |
parent | 0712acec1c21b5683f4cfe292bb82f7d1d37cae0 (diff) | |
parent | 23ebae01dc7e3df9c842ca7d017f7b233837721d (diff) |
Merge pull request #16957 from akien-mga/version-macros
Refactor version macros and fix related bugs
Diffstat (limited to 'editor/export_template_manager.cpp')
-rw-r--r-- | editor/export_template_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp index 41b016bdca..d0f008bd43 100644 --- a/editor/export_template_manager.cpp +++ b/editor/export_template_manager.cpp @@ -70,7 +70,7 @@ void ExportTemplateManager::_update_template_list() { memdelete(d); - String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + VERSION_MODULE_CONFIG; + String current_version = VERSION_FULL_CONFIG; Label *current = memnew(Label); current->set_h_size_flags(SIZE_EXPAND_FILL); |