-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is because of the In tvision/source/tvision/twindow.cpp Line 43 in f369a73 tvision/source/tvision/twindow.cpp Line 51 in f369a73 Conversely, the default values in tvision/source/tvision/tdialog.cpp Lines 29 to 30 in f369a73 Which is why you can no longer move or resize your editor window. Therefore, the solution is to use the same values for |
Beta Was this translation helpful? Give feedback.
This is because of the
growMode
andflags
properties ofTWindow
/TDialog
.In
TWindow
, the default values are:tvision/source/tvision/twindow.cpp
Line 43 in f369a73
tvision/source/tvision/twindow.cpp
Line 51 in f369a73
Conversely, the default values in
TDialog
are:tvision/source/tvision/tdialog.cpp
Lines 29 to 30 in f369a73
Which is why you can no longer move or resize your editor window.
Therefore, the solution is to use the same values for
growMode
andflags
asTWindow
. You should set them in your class' constructor.