- fix: code format indent settings not correctly saved
This commit is contained in:
parent
614fc911b1
commit
cfe370e252
3
NEWS.md
3
NEWS.md
|
@ -1,3 +1,6 @@
|
|||
Version 0.9.4 For Dev-C++ 7 Beta
|
||||
- fix: code format indent settings not correctly saved
|
||||
|
||||
Version 0.9.3 For Dev-C++ 7 Beta
|
||||
- fix: the count in the title of issues view isn't correct
|
||||
- fix: columns calculation not correct when paint lines containing chinese characters
|
||||
|
|
|
@ -317,7 +317,7 @@ void FormatterGeneralWidget::updateCodeFormatter(Settings::CodeFormatter &format
|
|||
PFormatterStyleItem item = mStylesModel.getStyle(ui->cbBraceStyle->currentIndex());
|
||||
if (item)
|
||||
format.setBraceStyle(item->style);
|
||||
if (ui->rbIndentSpaces) {
|
||||
if (ui->rbIndentSpaces->isChecked()) {
|
||||
format.setIndentStyle(FormatterIndentType::fitSpace);
|
||||
} else {
|
||||
format.setIndentStyle(FormatterIndentType::fitTab);
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
#define VERSION_H
|
||||
#include <QObject>
|
||||
|
||||
#define DEVCPP_VERSION "beta.0.9.3"
|
||||
#define DEVCPP_VERSION "beta.0.9.4"
|
||||
|
||||
#endif // VERSION_H
|
||||
|
|
Loading…
Reference in New Issue