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
Steve Lhomme
VLC
Commits
94a97b96
Commit
94a97b96
authored
Aug 27, 2006
by
zorglub
Browse files
Ensure minimum spacing between the status bar and the text
parent
2fe13ef6
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/main_interface.cpp
View file @
94a97b96
...
...
@@ -190,12 +190,12 @@ void MainInterface::setDisplay( float pos, int time, int length )
secstotimestr
(
psz_time
,
time
);
QString
title
;
title
.
sprintf
(
"%s/%s"
,
psz_time
,
psz_length
);
timeLabel
->
setText
(
title
);
timeLabel
->
setText
(
" "
+
title
+
" "
);
}
void
MainInterface
::
setName
(
QString
name
)
{
nameLabel
->
setText
(
name
);
nameLabel
->
setText
(
" "
+
name
+
" "
);
}
void
MainInterface
::
setStatus
(
int
status
)
...
...
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