Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
a6eea986
Commit
a6eea986
authored
Mar 21, 2008
by
Emmanuel Milou
Browse files
Tooltips
parent
c3a19abb
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/sliders.c
View file @
a6eea986
...
...
@@ -19,6 +19,7 @@
#include
<sliders.h>
#include
<dbus.h>
#include
<actions.h>
#include
<string.h>
gdouble
value
[
2
];
...
...
@@ -160,6 +161,11 @@ create_slider(const gchar * device)
}
ret
=
gtk_hbox_new
(
FALSE
/*homogeneous*/
,
5
/*spacing*/
);
if
(
strcmp
(
device
,
"speaker"
)
==
0
)
gtk_widget_set_tooltip_text
(
GTK_WIDGET
(
ret
),
_
(
"Speakers volume"
));
else
gtk_widget_set_tooltip_text
(
GTK_WIDGET
(
ret
),
_
(
"Mic volume"
));
button
[
dev
]
=
gtk_toggle_button_new
();
gtk_box_pack_start
(
GTK_BOX
(
ret
),
button
[
dev
],
FALSE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
...
...
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