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
83b82370
Commit
83b82370
authored
13 years ago
by
Wladimir J. van der Laan
Browse files
Options
Download
Email Patches
Plain Diff
forgot synced icons
parent
d8aeb8dd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/qt/bitcoingui.cpp
+1
-0
src/qt/bitcoingui.cpp
src/qt/forms/sendcoinsdialog.ui
+4
-21
src/qt/forms/sendcoinsdialog.ui
src/qt/res/icons/notsynced.png
+0
-0
src/qt/res/icons/notsynced.png
src/qt/res/icons/synced.png
+0
-0
src/qt/res/icons/synced.png
src/qt/sendcoinsdialog.cpp
+1
-0
src/qt/sendcoinsdialog.cpp
with
6 additions
and
21 deletions
+6
-21
src/qt/bitcoingui.cpp
View file @
83b82370
...
...
@@ -474,6 +474,7 @@ void BitcoinGUI::gotoReceiveCoinsPage()
void
BitcoinGUI
::
gotoSendCoinsPage
()
{
sendCoinsAction
->
setChecked
(
true
);
sendCoinsPage
->
clear
();
centralWidget
->
setCurrentWidget
(
sendCoinsPage
);
exportAction
->
setEnabled
(
false
);
}
...
...
This diff is collapsed.
Click to expand it.
src/qt/forms/sendcoinsdialog.ui
View file @
83b82370
...
...
@@ -107,6 +107,9 @@
<property
name=
"maxLength"
>
<number>
34
</number>
</property>
<property
name=
"placeholderText"
>
<string/>
</property>
</widget>
</item>
<item>
...
...
@@ -178,7 +181,7 @@
<widget
class=
"QPushButton"
name=
"sendButton"
>
<property
name=
"minimumSize"
>
<size>
<width>
1
2
0
</width>
<width>
1
5
0
</width>
<height>
0
</height>
</size>
</property>
...
...
@@ -197,25 +200,6 @@
</property>
</widget>
</item>
<item>
<widget
class=
"QDialogButtonBox"
name=
"buttonBox"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Maximum"
vsizetype=
"Fixed"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"toolTip"
>
<string>
Abort the send action
</string>
</property>
<property
name=
"standardButtons"
>
<set>
QDialogButtonBox::Cancel
</set>
</property>
<property
name=
"centerButtons"
>
<bool>
false
</bool>
</property>
</widget>
</item>
</layout>
</item>
<item>
...
...
@@ -248,7 +232,6 @@
<tabstop>
addAsLabel
</tabstop>
<tabstop>
payAmount
</tabstop>
<tabstop>
sendButton
</tabstop>
<tabstop>
buttonBox
</tabstop>
</tabstops>
<resources>
<include
location=
"../bitcoin.qrc"
/>
...
...
This diff is collapsed.
Click to expand it.
src/qt/res/icons/notsynced.png
0 → 100644
View file @
83b82370
1013 Bytes
This diff is collapsed.
Click to expand it.
src/qt/res/icons/synced.png
0 → 100644
View file @
83b82370
1.1 KB
This diff is collapsed.
Click to expand it.
src/qt/sendcoinsdialog.cpp
View file @
83b82370
...
...
@@ -23,6 +23,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent, const QString &address) :
ui
->
payTo
->
setPlaceholderText
(
tr
(
"Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)"
));
ui
->
addAsLabel
->
setPlaceholderText
(
tr
(
"Enter a label for this address to add it to your address book"
));
#endif
GUIUtil
::
setupAddressWidget
(
ui
->
payTo
,
this
);
// Set initial send-to address if provided
...
...
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