Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
defunctec
crown-core
Commits
69d03bc6
Commit
69d03bc6
authored
11 years ago
by
Wladimir J. van der Laan
Browse files
Options
Download
Email Patches
Plain Diff
qt: Fix tab order in send and receive tab
parent
79fb0557
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/qt/bitcoinamountfield.cpp
+2
-1
src/qt/bitcoinamountfield.cpp
src/qt/forms/receivecoinsdialog.ui
+4
-1
src/qt/forms/receivecoinsdialog.ui
src/qt/sendcoinsdialog.cpp
+4
-3
src/qt/sendcoinsdialog.cpp
with
10 additions
and
5 deletions
+10
-5
src/qt/bitcoinamountfield.cpp
View file @
69d03bc6
...
...
@@ -116,7 +116,8 @@ bool BitcoinAmountField::eventFilter(QObject *object, QEvent *event)
QWidget
*
BitcoinAmountField
::
setupTabChain
(
QWidget
*
prev
)
{
QWidget
::
setTabOrder
(
prev
,
amount
);
return
amount
;
QWidget
::
setTabOrder
(
amount
,
unit
);
return
unit
;
}
qint64
BitcoinAmountField
::
value
(
bool
*
valid_out
)
const
...
...
This diff is collapsed.
Click to expand it.
src/qt/forms/receivecoinsdialog.ui
View file @
69d03bc6
...
...
@@ -245,6 +245,9 @@
<property
name=
"contextMenuPolicy"
>
<enum>
Qt::CustomContextMenu
</enum>
</property>
<property
name=
"tabKeyNavigation"
>
<bool>
false
</bool>
</property>
<property
name=
"sortingEnabled"
>
<bool>
true
</bool>
</property>
...
...
@@ -312,8 +315,8 @@
<tabstop>
reqAmount
</tabstop>
<tabstop>
reqMessage
</tabstop>
<tabstop>
reuseAddress
</tabstop>
<tabstop>
clearButton
</tabstop>
<tabstop>
receiveButton
</tabstop>
<tabstop>
clearButton
</tabstop>
<tabstop>
recentRequestsView
</tabstop>
<tabstop>
showRequestButton
</tabstop>
<tabstop>
removeRequestButton
</tabstop>
...
...
This diff is collapsed.
Click to expand it.
src/qt/sendcoinsdialog.cpp
View file @
69d03bc6
...
...
@@ -325,9 +325,10 @@ QWidget *SendCoinsDialog::setupTabChain(QWidget *prev)
prev
=
entry
->
setupTabChain
(
prev
);
}
}
QWidget
::
setTabOrder
(
prev
,
ui
->
addButton
);
QWidget
::
setTabOrder
(
ui
->
addButton
,
ui
->
sendButton
);
return
ui
->
sendButton
;
QWidget
::
setTabOrder
(
prev
,
ui
->
sendButton
);
QWidget
::
setTabOrder
(
ui
->
sendButton
,
ui
->
clearButton
);
QWidget
::
setTabOrder
(
ui
->
clearButton
,
ui
->
addButton
);
return
ui
->
addButton
;
}
void
SendCoinsDialog
::
setAddress
(
const
QString
&
address
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help