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
53d5c490
Commit
53d5c490
authored
Oct 22, 2014
by
JoeG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix right-click context menu of block chain view.
parent
ce05634f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
chain.qml
mist/assets/qml/views/chain.qml
+5
-5
No files found.
mist/assets/qml/views/chain.qml
View file @
53d5c490
...
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
id
:
root
property
var
title
:
"Block
c
hain"
property
var
title
:
"Block
C
hain"
property
var
menuItem
objectName
:
"chainView"
...
...
@@ -63,12 +63,12 @@ Rectangle {
Menu
{
id
:
contextMenu
property
var
row
;
property
var
row
MenuItem
{
text
:
"Details"
onTriggered
:
{
popup
.
visible
=
true
popup
.
setDetails
(
blockModel
.
get
(
this
.
row
))
popup
.
setDetails
(
blockModel
.
get
(
contextMenu
.
row
))
}
}
...
...
@@ -77,7 +77,7 @@ Rectangle {
MenuItem
{
text
:
"Copy"
onTriggered
:
{
copyToClipboard
(
blockModel
.
get
(
this
.
row
).
hash
)
copyToClipboard
(
blockModel
.
get
(
contextMenu
.
row
).
hash
)
}
}
...
...
@@ -85,7 +85,7 @@ Rectangle {
text
:
"Dump State"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
var
hash
=
blockModel
.
get
(
this
.
row
).
hash
;
var
hash
=
blockModel
.
get
(
contextMenu
.
row
).
hash
;
gui
.
dumpState
(
hash
,
path
);
});
...
...
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