diff --git a/NEWS.md b/NEWS.md
index a918d8aa..9604af37 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,6 @@
+Version 0.9.3 For Dev-C++ 7 Beta
+ - fix: the count in the title of issues view isn't correct
+
Version 0.9.2 For Dev-C++ 7 Beta
- fix: gutter of the disassembly code control in the cpu info dialog is grayed
- fix: problem set & problem views not correctly hidden when disabled in the executor / problem set options
diff --git a/RedPandaIDE/compiler/compilermanager.cpp b/RedPandaIDE/compiler/compilermanager.cpp
index 9c680f9e..9caf66f2 100644
--- a/RedPandaIDE/compiler/compilermanager.cpp
+++ b/RedPandaIDE/compiler/compilermanager.cpp
@@ -330,8 +330,9 @@ void CompilerManager::onSyntaxCheckIssue(PCompileIssue issue)
{
if (issue->type == CompileIssueType::Error)
mSyntaxCheckErrorCount++;
- mSyntaxCheckIssueCount++;
-
+ if (issue->type == CompileIssueType::Error ||
+ issue->type == CompileIssueType::Warning)
+ mSyntaxCheckIssueCount++;
}
int CompilerManager::syntaxCheckIssueCount() const
diff --git a/RedPandaIDE/mainwindow.ui b/RedPandaIDE/mainwindow.ui
index 52bd5973..47e7a255 100644
--- a/RedPandaIDE/mainwindow.ui
+++ b/RedPandaIDE/mainwindow.ui
@@ -506,7 +506,7 @@
QTabWidget::South
- 6
+ 0
@@ -702,7 +702,7 @@
QTabWidget::North
- 2
+ 0
@@ -1381,7 +1381,7 @@
0
0
1114
- 25
+ 30