good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
5662176f
Commit
5662176f
authored
Oct 22, 2014
by
Jeffrey Wilcke
Browse files
Options
Downloads
Plain Diff
Merge pull request #149 from JosephGoulden/develop
Develop
parents
ce05634f
1880c6b3
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
mist/assets/qml/views/chain.qml
+5
-5
5 additions, 5 deletions
mist/assets/qml/views/chain.qml
mist/assets/qml/views/transaction.qml
+1
-1
1 addition, 1 deletion
mist/assets/qml/views/transaction.qml
with
6 additions
and
6 deletions
mist/assets/qml/views/chain.qml
+
5
−
5
View file @
5662176f
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
Rectangle
{
id
:
root
id
:
root
property
var
title
:
"
Block
c
hain
"
property
var
title
:
"
Block
C
hain
"
property
var
menuItem
property
var
menuItem
objectName
:
"
chainView
"
objectName
:
"
chainView
"
...
@@ -63,12 +63,12 @@ Rectangle {
...
@@ -63,12 +63,12 @@ Rectangle {
Menu
{
Menu
{
id
:
contextMenu
id
:
contextMenu
property
var
row
;
property
var
row
MenuItem
{
MenuItem
{
text
:
"
Details
"
text
:
"
Details
"
onTriggered
:
{
onTriggered
:
{
popup
.
visible
=
true
popup
.
visible
=
true
popup
.
setDetails
(
blockModel
.
get
(
this
.
row
))
popup
.
setDetails
(
blockModel
.
get
(
contextMenu
.
row
))
}
}
}
}
...
@@ -77,7 +77,7 @@ Rectangle {
...
@@ -77,7 +77,7 @@ Rectangle {
MenuItem
{
MenuItem
{
text
:
"
Copy
"
text
:
"
Copy
"
onTriggered
:
{
onTriggered
:
{
copyToClipboard
(
blockModel
.
get
(
this
.
row
).
hash
)
copyToClipboard
(
blockModel
.
get
(
contextMenu
.
row
).
hash
)
}
}
}
}
...
@@ -85,7 +85,7 @@ Rectangle {
...
@@ -85,7 +85,7 @@ Rectangle {
text
:
"
Dump State
"
text
:
"
Dump State
"
onTriggered
:
{
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
var
hash
=
blockModel
.
get
(
this
.
row
).
hash
;
var
hash
=
blockModel
.
get
(
contextMenu
.
row
).
hash
;
gui
.
dumpState
(
hash
,
path
);
gui
.
dumpState
(
hash
,
path
);
});
});
...
...
This diff is collapsed.
Click to expand it.
mist/assets/qml/views/transaction.qml
+
1
−
1
View file @
5662176f
...
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
...
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import
Ethereum
1.0
import
Ethereum
1.0
Rectangle
{
Rectangle
{
property
var
title
:
"
New
t
ransaction
"
property
var
title
:
"
New
T
ransaction
"
property
var
menuItem
property
var
menuItem
objectName
:
"
newTxView
"
objectName
:
"
newTxView
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment