Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
2e2f23a0
Commit
2e2f23a0
authored
Aug 12, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly hide elements on tx submit
parent
0c9c79a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
transaction.qml
ethereal/assets/qml/views/transaction.qml
+9
-12
No files found.
ethereal/assets/qml/views/transaction.qml
View file @
2e2f23a0
...
@@ -28,11 +28,13 @@ Rectangle {
...
@@ -28,11 +28,13 @@ Rectangle {
states
:
[
states
:
[
State
{
State
{
name
:
"ERROR"
name
:
"ERROR"
PropertyChanges
{
target
:
txResult
;
visible
:
true
}
PropertyChanges
{
target
:
txResult
;
visible
:
true
}
PropertyChanges
{
target
:
codeView
;
visible
:
true
}
PropertyChanges
{
target
:
codeView
;
visible
:
true
}
},
},
State
{
State
{
name
:
"DONE"
name
:
"DONE"
PropertyChanges
{
target
:
txValue
;
visible
:
false
}
PropertyChanges
{
target
:
txValue
;
visible
:
false
}
PropertyChanges
{
target
:
txGas
;
visible
:
false
}
PropertyChanges
{
target
:
txGas
;
visible
:
false
}
PropertyChanges
{
target
:
txGasPrice
;
visible
:
false
}
PropertyChanges
{
target
:
txGasPrice
;
visible
:
false
}
...
@@ -41,6 +43,8 @@ Rectangle {
...
@@ -41,6 +43,8 @@ Rectangle {
PropertyChanges
{
target
:
txDataLabel
;
visible
:
false
}
PropertyChanges
{
target
:
txDataLabel
;
visible
:
false
}
PropertyChanges
{
target
:
atLabel
;
visible
:
false
}
PropertyChanges
{
target
:
atLabel
;
visible
:
false
}
PropertyChanges
{
target
:
txFuelRecipient
;
visible
:
false
}
PropertyChanges
{
target
:
txFuelRecipient
;
visible
:
false
}
PropertyChanges
{
target
:
valueDenom
;
visible
:
false
}
PropertyChanges
{
target
:
gasDenom
;
visible
:
false
}
PropertyChanges
{
target
:
txResult
;
visible
:
true
}
PropertyChanges
{
target
:
txResult
;
visible
:
true
}
PropertyChanges
{
target
:
txOutput
;
visible
:
true
}
PropertyChanges
{
target
:
txOutput
;
visible
:
true
}
...
@@ -48,12 +52,15 @@ Rectangle {
...
@@ -48,12 +52,15 @@ Rectangle {
},
},
State
{
State
{
name
:
"SETUP"
name
:
"SETUP"
PropertyChanges
{
target
:
txValue
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
txValue
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
txGas
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
txGas
;
visible
:
true
;}
PropertyChanges
{
target
:
txGasPrice
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
txGasPrice
;
visible
:
true
;}
PropertyChanges
{
target
:
codeView
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
codeView
;
visible
:
true
;
text
:
""
}
PropertyChanges
{
target
:
txButton
;
visible
:
true
}
PropertyChanges
{
target
:
txButton
;
visible
:
true
}
PropertyChanges
{
target
:
txDataLabel
;
visible
:
true
}
PropertyChanges
{
target
:
txDataLabel
;
visible
:
true
}
PropertyChanges
{
target
:
valueDenom
;
visible
:
true
}
PropertyChanges
{
target
:
gasDenom
;
visible
:
true
}
PropertyChanges
{
target
:
txResult
;
visible
:
false
}
PropertyChanges
{
target
:
txResult
;
visible
:
false
}
PropertyChanges
{
target
:
txOutput
;
visible
:
false
}
PropertyChanges
{
target
:
txOutput
;
visible
:
false
}
...
@@ -113,11 +120,6 @@ Rectangle {
...
@@ -113,11 +120,6 @@ Rectangle {
validator
:
RegExpValidator
{
regExp
:
/
\d
*/
}
validator
:
RegExpValidator
{
regExp
:
/
\d
*/
}
placeholderText
:
"Gas"
placeholderText
:
"Gas"
text
:
"500"
text
:
"500"
/*
onTextChanged: {
contractFormReady()
}
*/
}
}
Label
{
Label
{
id
:
atLabel
id
:
atLabel
...
@@ -130,11 +132,6 @@ Rectangle {
...
@@ -130,11 +132,6 @@ Rectangle {
placeholderText
:
"Gas price"
placeholderText
:
"Gas price"
text
:
"10"
text
:
"10"
validator
:
RegExpValidator
{
regExp
:
/
\d
*/
}
validator
:
RegExpValidator
{
regExp
:
/
\d
*/
}
/*
onTextChanged: {
contractFormReady()
}
*/
}
}
ComboBox
{
ComboBox
{
...
...
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