Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andre Miranda
xfce4-taskmanager
Commits
35e53738
Commit
35e53738
authored
Jul 13, 2020
by
Andre Miranda
Committed by
Simon Steinbeiß
Aug 18, 2020
Browse files
statusbar: Use color with better contrast for dark themes
parent
2ef6ece4
Pipeline
#1681
passed with stages
in 1 minute and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/process-statusbar.c
View file @
35e53738
...
...
@@ -146,7 +146,7 @@ xtm_process_statusbar_set_property (GObject *object, guint property_id, const GV
g_strlcpy
(
statusbar
->
memory
,
g_value_get_string
(
value
),
sizeof
(
statusbar
->
memory
));
text
=
g_strdup_printf
(
_
(
"Memory: %s"
),
statusbar
->
memory
);
gtk_label_set_text
(
GTK_LABEL
(
statusbar
->
label_memory
),
text
);
gdk_rgba_parse
(
&
color
,
"#
ab1852
"
);
gdk_rgba_parse
(
&
color
,
"#
c22b66
"
);
gtk_widget_override_color
(
statusbar
->
label_memory
,
GTK_STATE_NORMAL
,
&
color
);
g_free
(
text
);
break
;
...
...
Write
Preview
Supports
Markdown
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