We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c735574 + dd37f21 commit 86ed1a0Copy full SHA for 86ed1a0
PythonScript/src/ConsoleDialog.cpp
@@ -470,6 +470,11 @@ void ConsoleDialog::createOutputWindow(HWND hParentWindow)
470
LONG_PTR currentStyle = GetWindowLongPtr(m_scintilla, GWL_STYLE);
471
SetWindowLongPtr(m_scintilla, GWL_STYLE, currentStyle | WS_TABSTOP);
472
473
+ LONG_PTR exstyles = GetWindowLongPtr(m_scintilla, GWL_EXSTYLE);
474
+ if ((exstyles & WS_EX_LAYOUTRTL) == WS_EX_LAYOUTRTL)
475
+ {
476
+ SetWindowLongPtr(m_scintilla, GWL_EXSTYLE, exstyles & (~WS_EX_LAYOUTRTL));
477
+ }
478
479
callScintilla(SCI_SETREADONLY, 1, 0);
480
0 commit comments