Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9024e28c
Commit
9024e28c
authored
Sep 14, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disambiguate trivial tool tips (fixes: #3068)
This was requested for Arabic.
parent
bdf005c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/controller_widget.cpp
+2
-2
modules/gui/qt4/util/customwidgets.cpp
modules/gui/qt4/util/customwidgets.cpp
+1
-1
No files found.
modules/gui/qt4/components/controller_widget.cpp
View file @
9024e28c
...
...
@@ -140,7 +140,7 @@ void SoundWidget::updateVolume( int i_sliderVolume )
if
(
i_sliderVolume
==
0
)
{
volMuteLabel
->
setPixmap
(
QPixmap
(
":/toolbar/volume-muted"
)
);
volMuteLabel
->
setToolTip
(
qtr
(
"Unmute"
)
);
volMuteLabel
->
setToolTip
(
qfu
(
vlc_pgettext
(
"Tooltip|Unmute"
,
"Unmute"
))
);
return
;
}
...
...
@@ -149,7 +149,7 @@ void SoundWidget::updateVolume( int i_sliderVolume )
else
if
(
i_sliderVolume
>
(
VOLUME_MAX
*
2
/
3
)
)
volMuteLabel
->
setPixmap
(
QPixmap
(
":/toolbar/volume-high"
)
);
else
volMuteLabel
->
setPixmap
(
QPixmap
(
":/toolbar/volume-medium"
)
);
volMuteLabel
->
setToolTip
(
q
tr
(
"Mute"
)
);
volMuteLabel
->
setToolTip
(
q
fu
(
vlc_pgettext
(
"Tooltip|Mute"
,
"Mute"
)
)
);
}
void
SoundWidget
::
updateVolume
()
...
...
modules/gui/qt4/util/customwidgets.cpp
View file @
9024e28c
...
...
@@ -133,7 +133,7 @@ SearchLineEdit::SearchLineEdit( QWidget *parent ) : QFrame( parent )
clearButton
->
setAutoRaise
(
true
);
clearButton
->
setMaximumWidth
(
30
);
clearButton
->
setIcon
(
QIcon
(
":/toolbar/clear"
)
);
clearButton
->
setToolTip
(
q
tr
(
"Clear"
)
);
clearButton
->
setToolTip
(
q
fu
(
vlc_pgettext
(
"Tooltip|Clear"
,
"Clear"
)
)
);
clearButton
->
hide
();
CONNECT
(
clearButton
,
clicked
(),
searchLine
,
clear
()
);
...
...
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