diff options
| author | Philip Kaufmann <[email protected]> | 2012-06-13 18:34:29 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-06-13 18:34:29 +0200 |
| commit | b5782531adfbbe288266178e75cb7ea52aaf630c (patch) | |
| tree | c42f476b18489fdde3326f7ab04e9dd0b630e807 | |
| parent | Merge pull request #1433 from Diapolo/tabbed_optionsdialog (diff) | |
| download | discoin-b5782531adfbbe288266178e75cb7ea52aaf630c.tar.xz discoin-b5782531adfbbe288266178e75cb7ea52aaf630c.zip | |
set cursor for balance field to IBeamCursor (to show the user it IS selectable) and set autoDefault to false for the buttons that do not need this
| -rw-r--r-- | src/qt/forms/sendcoinsdialog.ui | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index 023a72ac2..10a1586d4 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -70,6 +70,9 @@ <iconset resource="../bitcoin.qrc"> <normaloff>:/icons/add</normaloff>:/icons/add</iconset> </property> + <property name="autoDefault"> + <bool>false</bool> + </property> </widget> </item> <item> @@ -93,6 +96,9 @@ <property name="autoRepeatDelay"> <number>300</number> </property> + <property name="autoDefault"> + <bool>false</bool> + </property> </widget> </item> <item> @@ -109,6 +115,9 @@ </item> <item> <widget class="QLabel" name="labelBalance"> + <property name="cursor"> + <cursorShape>IBeamCursor</cursorShape> + </property> <property name="text"> <string>123.456 BTC</string> </property> |