Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cbrownstein
tails
Commits
e54e8f78
Commit
e54e8f78
authored
Jun 22, 2019
by
intrigeri
Browse files
Merge remote-tracking branch 'origin/bugfix/16802-screen-locker-dim-labels' into stable
Fix-committed: #16802
parents
e8e87b0a
6ed8a433
Changes
1
Hide whitespace changes
Inline
Side-by-side
config/chroot_local-includes/usr/local/bin/tails-screen-locker
View file @
e54e8f78
...
...
@@ -130,19 +130,6 @@ class PasswordDialog(object):
label_subtitle
=
Gtk
.
Label
(
label
=
_
(
"Set up a password to unlock the screen."
),
)
label_subtitle
.
get_style_context
().
add_class
(
"dim-label"
)
label1
=
Gtk
.
Label
(
label
=
_
(
"Password"
),
xalign
=
1
)
label1
.
get_style_context
().
add_class
(
"dim-label"
)
label2
=
Gtk
.
Label
(
label
=
_
(
"Confirm"
),
xalign
=
1
)
label2
.
get_style_context
().
add_class
(
"dim-label"
)
self
.
entry1
=
Gtk
.
Entry
(
can_focus
=
True
,
...
...
@@ -159,8 +146,8 @@ class PasswordDialog(object):
self
.
entry2
.
connect
(
"changed"
,
self
.
on_entry_changed
)
grid
=
Gtk
.
Grid
(
row_spacing
=
2
,
column_spacing
=
10
)
grid
.
attach
(
label1
,
0
,
0
,
1
,
1
)
grid
.
attach
(
label2
,
0
,
1
,
1
,
1
)
grid
.
attach
(
Gtk
.
Label
(
label
=
_
(
"Password"
),
xalign
=
1
)
,
0
,
0
,
1
,
1
)
grid
.
attach
(
Gtk
.
Label
(
label
=
_
(
"Confirm"
),
xalign
=
1
)
,
0
,
1
,
1
,
1
)
grid
.
attach
(
self
.
entry1
,
1
,
0
,
1
,
1
)
grid
.
attach
(
self
.
entry2
,
1
,
1
,
1
,
1
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment