- enhancement: Problem's test case shouldn't accept rich text inputs
This commit is contained in:
parent
868cce7dc0
commit
8d880efd24
3
NEWS.md
3
NEWS.md
|
@ -1,3 +1,6 @@
|
||||||
|
Version 0.11.1 For Dev-C++ 7 Beta
|
||||||
|
- enhancement: Problem's test case shouldn't accept rich text inputs
|
||||||
|
|
||||||
Version 0.11.0 For Dev-C++ 7 Beta
|
Version 0.11.0 For Dev-C++ 7 Beta
|
||||||
- enhancement: redesign the expression parser for code completion
|
- enhancement: redesign the expression parser for code completion
|
||||||
- fix: "make as default language" option in the project wizard doesn't work
|
- fix: "make as default language" option in the project wizard doesn't work
|
||||||
|
|
|
@ -1356,6 +1356,9 @@
|
||||||
<property name="lineWrapMode">
|
<property name="lineWrapMode">
|
||||||
<enum>QTextEdit::NoWrap</enum>
|
<enum>QTextEdit::NoWrap</enum>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="acceptRichText">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="1">
|
<item row="1" column="1">
|
||||||
|
@ -1373,6 +1376,9 @@
|
||||||
<property name="lineWrapMode">
|
<property name="lineWrapMode">
|
||||||
<enum>QTextEdit::NoWrap</enum>
|
<enum>QTextEdit::NoWrap</enum>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="acceptRichText">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
@ -1392,7 +1398,7 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>1114</width>
|
<width>1114</width>
|
||||||
<height>25</height>
|
<height>30</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QMenu" name="menuFile">
|
<widget class="QMenu" name="menuFile">
|
||||||
|
|
Loading…
Reference in New Issue