diff options
| author | Tilka <tilkax@gmail.com> | 2018-10-07 12:36:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-07 12:36:38 +0100 |
| commit | daed09f7f04555a0955ce51881d24ed40b93db05 (patch) | |
| tree | 5efd85e39bf932f2bc80ea726df30087fc3645a1 /Source/Core | |
| parent | e6302185875ae9c6ec00929a2238e7a19f4f1c43 (diff) | |
| parent | eae36399dce85f2f631593b1d82fdd9853b24b04 (diff) | |
Merge pull request #7394 from mazes-80/11026
IOWindow: append new text at the end by default
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp index 8a60e574aa..2a0caef151 100644 --- a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp @@ -118,6 +118,7 @@ void IOWindow::CreateMainLayout() void IOWindow::Update() { m_expression_text->setPlainText(QString::fromStdString(m_reference->GetExpression())); + m_expression_text->moveCursor(QTextCursor::End, QTextCursor::MoveAnchor); m_range_spinbox->setValue(m_reference->range * SLIDER_TICK_COUNT); m_range_slider->setValue(m_reference->range * SLIDER_TICK_COUNT); |
