Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c0a8feb3
Commit
c0a8feb3
authored
Mar 05, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: EPGChannels: drop the program number
parent
64369374
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/gui/qt4/components/epg/EPGChannels.cpp
modules/gui/qt4/components/epg/EPGChannels.cpp
+8
-2
No files found.
modules/gui/qt4/components/epg/EPGChannels.cpp
View file @
c0a8feb3
...
@@ -52,10 +52,16 @@ void EPGChannels::paintEvent( QPaintEvent *event )
...
@@ -52,10 +52,16 @@ void EPGChannels::paintEvent( QPaintEvent *event )
for
(
int
i
=
0
;
i
<
channels
.
count
();
++
i
)
for
(
int
i
=
0
;
i
<
channels
.
count
();
++
i
)
{
{
QString
text
(
channels
[
i
]
);
/* try to remove the " [Program xxx]" end */
int
i_idx_channel
=
text
.
lastIndexOf
(
" [Program "
);
if
(
i_idx_channel
>
0
)
text
=
text
.
left
(
i_idx_channel
);
p
.
drawText
(
0
,
-
m_offset
+
(
i
+
0.5
)
*
TRACKS_HEIGHT
-
4
,
p
.
drawText
(
0
,
-
m_offset
+
(
i
+
0.5
)
*
TRACKS_HEIGHT
-
4
,
width
(),
20
,
Qt
::
AlignLeft
,
channels
[
i
]
);
width
(),
20
,
Qt
::
AlignLeft
,
text
);
int
i_width
=
fontMetrics
().
width
(
channels
[
i
]
);
int
i_width
=
fontMetrics
().
width
(
text
);
if
(
width
()
<
i_width
)
if
(
width
()
<
i_width
)
setMinimumWidth
(
i_width
);
setMinimumWidth
(
i_width
);
}
}
...
...
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