diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-14 18:17:12 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-14 18:17:12 +0200 |
commit | 5a060b8dc81c6268eb0272a4a0711f2c1ddad9e1 (patch) | |
tree | 2b020181563f088772974f0fa4a7779122ebee98 /src/qt/rpcconsole.h | |
parent | b07ea7c74bc8ad338588421371dbdb02d5351496 (diff) |
RPC console: scroll to the end when user enters a command
- Ensures that the command and reply is visible
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index 9c4fab497e..0a7b10f4a2 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -44,7 +44,8 @@ public slots: void setNumBlocks(int count); /** Go forward or back in history */ void browseHistory(int offset); - + /** Scroll console view to end */ + void scrollToEnd(); signals: // For RPC command executor void stopExecutor(); |