diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-12 12:30:07 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-12 18:39:26 +0200 |
commit | c6aa86afc2fe8995bcb1036c9879f85ef335e295 (patch) | |
tree | 0fe090f2f4f545204601d732353544a6b611dd8f /src/qt/forms | |
parent | 97ec4e50b128c201c82dd76b28ab44508d85e94f (diff) |
Convert RPC console to QTextEdit instead of QTableView
* This allows copy/pasting whole or partial messages
* Handle output more consistently in console
* No more scrollbars-in-scrollbars: by setting per-pixel scrolling on the table, cells can have any height
* Decorations for "request" and "reply" are changed to the txin and txout icons instead of colored squares
Diffstat (limited to 'src/qt/forms')
-rw-r--r-- | src/qt/forms/rpcconsole.ui | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/src/qt/forms/rpcconsole.ui b/src/qt/forms/rpcconsole.ui index e8f01ff2f5..cded274792 100644 --- a/src/qt/forms/rpcconsole.ui +++ b/src/qt/forms/rpcconsole.ui @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>706</width> - <height>382</height> + <height>446</height> </rect> </property> <property name="windowTitle"> @@ -327,30 +327,22 @@ <number>3</number> </property> <item> - <widget class="QTableWidget" name="messagesWidget"> + <widget class="QTextEdit" name="messagesWidget"> <property name="minimumSize"> <size> <width>0</width> <height>100</height> </size> </property> - <property name="tabKeyNavigation"> - <bool>false</bool> + <property name="readOnly"> + <bool>true</bool> </property> - <property name="selectionBehavior"> - <enum>QAbstractItemView::SelectRows</enum> + <property name="tabKeyNavigation" stdset="0"> + <bool>false</bool> </property> - <property name="columnCount"> + <property name="columnCount" stdset="0"> <number>2</number> </property> - <attribute name="horizontalHeaderVisible"> - <bool>false</bool> - </attribute> - <attribute name="verticalHeaderVisible"> - <bool>false</bool> - </attribute> - <column/> - <column/> </widget> </item> <item> |