Skip to content

Commit 676b37e

Browse files
committed
add vertical scroll bar for input area in console
1 parent 06da4e8 commit 676b37e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/console_sci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(self, parent=None):
9292
# Use raw message to Scintilla here (all messages are documented
9393
# here: http://www.scintilla.org/ScintillaDoc.html)
9494
self.SendScintilla(QsciScintilla.SCI_SETHSCROLLBAR, 0)
95-
self.SendScintilla(QsciScintilla.SCI_SETVSCROLLBAR, 0)
95+
self.SendScintilla(QsciScintilla.SCI_SETVSCROLLBAR, 1)
9696

9797
# not too small
9898
#self.setMinimumSize(500, 300)

0 commit comments

Comments
 (0)