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
1878630b
Commit
1878630b
authored
Feb 16, 2015
by
Alexandre Van de Sande
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solved Issue #318 and added states to back button
parent
05f28088
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
20 deletions
+21
-20
backButtonDisabled.png
cmd/mist/assets/backButtonDisabled.png
+0
-0
backButtonDisabled@2x.png
cmd/mist/assets/backButtonDisabled@2x.png
+0
-0
backButtonHover.png
cmd/mist/assets/backButtonHover.png
+0
-0
backButtonHover@2x.png
cmd/mist/assets/backButtonHover@2x.png
+0
-0
main.qml
cmd/mist/assets/qml/main.qml
+1
-1
browser.qml
cmd/mist/assets/qml/views/browser.qml
+20
-19
No files found.
cmd/mist/assets/backButtonDisabled.png
0 → 100644
View file @
1878630b
634 Bytes
cmd/mist/assets/backButtonDisabled@2x.png
0 → 100644
View file @
1878630b
1.42 KB
cmd/mist/assets/backButtonHover.png
0 → 100644
View file @
1878630b
657 Bytes
cmd/mist/assets/backButtonHover@2x.png
0 → 100644
View file @
1878630b
1.48 KB
cmd/mist/assets/qml/main.qml
View file @
1878630b
...
...
@@ -485,7 +485,7 @@ ApplicationWindow {
label
.
visible
=
!
on
buttonLabel
.
visible
=
on
}
width
:
192
height
:
55
color
:
"#00000000"
...
...
cmd/mist/assets/qml/views/browser.qml
View file @
1878630b
...
...
@@ -129,9 +129,9 @@ Rectangle {
Button
{
id
:
back
onClicked
:
{
webview
.
goBack
()
z
:
30
onClicked
:
{
webview
.
goBack
()
}
anchors
{
...
...
@@ -140,21 +140,23 @@ Rectangle {
}
style
:
ButtonStyle
{
background
:
Image
{
source
:
"../../backButton.png"
width
:
20
height
:
30
}
background
:
Image
{
source
:
(
webview
.
canGoBack
)
?
(
control
.
hovered
?
"../../backButtonHover.png"
:
"../../backButton.png"
)
:
"../../backButtonDisabled.png"
width
:
20
height
:
30
}
}
}
Rectangle
{
id
:
appInfoPane
height
:
28
color
:
"#FFFFFF"
radius
:
6
MouseArea
{
id
:
appInfoPane
height
:
28
color
:
"#FFFFFF"
radius
:
6
z
:
2
MouseArea
{
anchors.fill
:
parent
z
:
10
hoverEnabled
:
true
...
...
@@ -247,7 +249,7 @@ Rectangle {
}
}
z
:
2
}
Rectangle
{
...
...
@@ -256,6 +258,7 @@ Rectangle {
height
:
30
color
:
"#BDB6B6"
radius
:
6
z
:
1
anchors
{
left
:
back
.
right
...
...
@@ -264,19 +267,17 @@ Rectangle {
rightMargin
:
10
top
:
parent
.
top
topMargin
:
23
}
z
:
1
}
}
Rectangle
{
id
:
navBarBackground
anchors.fill
:
parent
z
:
-
1
gradient
:
Gradient
{
GradientStop
{
position
:
0.0
;
color
:
"#F6F1F2"
}
GradientStop
{
position
:
1.0
;
color
:
"#DED5D5"
}
}
z
:
-
1
}
states
:
[
...
...
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