- fix:license info in the about dialog should be readonly
This commit is contained in:
parent
db61432d36
commit
564bf02e59
1
NEWS.md
1
NEWS.md
|
@ -3,6 +3,7 @@ Version 0.10.2 For Dev-C++ 7 Beta
|
|||
- fix: dragging out of the editor and back will cause error
|
||||
- fix: dragging text from lines in the front to lines back will cause error
|
||||
- fix: dragging text onto itself should do nothing
|
||||
- fix:license info in the about dialog should be readonly
|
||||
|
||||
Version 0.10.1 For Dev-C++ 7 Beta
|
||||
- fix: can't correctly expand watch expression that has spaces in it
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
#define VERSION_H
|
||||
#include <QObject>
|
||||
|
||||
#define DEVCPP_VERSION "beta.0.10.1"
|
||||
#define DEVCPP_VERSION "beta.0.10.2"
|
||||
|
||||
#endif // VERSION_H
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QPlainTextEdit" name="plainTextEdit">
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="plainText">
|
||||
<string> This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
|
Loading…
Reference in New Issue