- change: Don't turn on the code format option "indent class" by default.

This commit is contained in:
Roy Qu 2024-03-27 19:50:44 +08:00
parent bd52bd9831
commit 7034742741
2 changed files with 3 additions and 2 deletions

View File

@ -99,7 +99,8 @@ Red Panda C++ Version 2.27
- enhancement: Open ".def" (Module definition file) file in editor when double click it in the project view.
- enhancement: When a dll project has .def file, use it when generating the dll file.
- fix: "project name".exe.manifest is auto removed when build the project.
- fix: "0x3.12p+1" is treadted as a plus expression when reformatting code ( by 绣球135@qq
- fix: "0x3.12p+1" is treadted as a plus expression when reformatting code. ( by 绣球135@qq
- change: Don't turn on the code format option "indent class" by default.
Red Panda C++ Version 2.26
- enhancement: Code suggestion for embedded std::vectors.

View File

@ -5744,7 +5744,7 @@ void Settings::CodeFormatter::doLoad()
mAttachInlines = boolValue("attach_inlines",false);
mAttachExternC = boolValue("attach_extern_c",false);
mAttachClosingWhile = boolValue("attach_closing_while",false);
mIndentClasses = boolValue("indent_classes",true);
mIndentClasses = boolValue("indent_classes",false);
mIndentModifiers = boolValue("indent_modifiers",false);
mIndentSwitches = boolValue("indent_switches",true);
mIndentCases = boolValue("indent_cases",false);