Skip to content

Commit 137b7a2

Browse files
committed
Merge #17125: gui: Add toolTip and placeholderText to sign message fields
610d938 gui: Added label & tooltip for Verify Message labels (dannmat) Pull request description: When using the Verify Message functionality, I found the input boxes to be rather confusing as they had no guidance for their purpose. I have added tooltips and labels to aid users when verifying messages in future ACKs for top commit: promag: Code review ACK 610d938. Nit, commit and title are a little weird. Suggestion: "gui: Add toolTip and placeholderText to sign message fields" MarcoFalke: ACK 610d938 (looks good, didn't compile or tested the changes) fanquake: ACK - 610d938 Tree-SHA512: d6a1bc872ad270dce440e96a163ce72cdd4708913d87a0fea749fc8cf2d8163b791cbb96a82030e0cb7d239920ceb0e3f05e0eec113f45a1a8e1309fbd92b4b0
2 parents 029c65e + 610d938 commit 137b7a2

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

src/qt/forms/signverifymessagedialog.ui

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,24 @@
285285
</layout>
286286
</item>
287287
<item>
288-
<widget class="QPlainTextEdit" name="messageIn_VM"/>
288+
<widget class="QPlainTextEdit" name="messageIn_VM">
289+
<property name="toolTip">
290+
<string>The signed message to verify</string>
291+
</property>
292+
<property name="placeholderText">
293+
<string>The signed message to verify</string>
294+
</property>
295+
</widget>
289296
</item>
290297
<item>
291-
<widget class="QValidatedLineEdit" name="signatureIn_VM"/>
298+
<widget class="QValidatedLineEdit" name="signatureIn_VM">
299+
<property name="toolTip">
300+
<string>The signature given when the message was signed</string>
301+
</property>
302+
<property name="placeholderText">
303+
<string>The signature given when the message was signed</string>
304+
</property>
305+
</widget>
292306
</item>
293307
<item>
294308
<layout class="QHBoxLayout" name="horizontalLayout_2_VM">

0 commit comments

Comments
 (0)