Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
428
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
0cf4d52d
Commit
0cf4d52d
authored
1 year ago
by
Fatih Uzunoğlu
Committed by
Jean-Baptiste Kempf
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
qml: fix wrong sizing in PlaylistMedia
parent
9c230251
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3961
qml: fix wrong sizing in PlaylistMedia
Pipeline
#367906
passed with stages
in 23 minutes and 33 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/gui/qt/medialibrary/qml/PlaylistMedia.qml
+8
-3
8 additions, 3 deletions
modules/gui/qt/medialibrary/qml/PlaylistMedia.qml
modules/gui/qt/medialibrary/qml/PlaylistMediaDisplay.qml
+2
-0
2 additions, 0 deletions
modules/gui/qt/medialibrary/qml/PlaylistMediaDisplay.qml
with
10 additions
and
3 deletions
modules/gui/qt/medialibrary/qml/PlaylistMedia.qml
+
8
−
3
View file @
0cf4d52d
...
...
@@ -37,6 +37,8 @@ MainInterface.MainTableView {
readonly
property
int
columns
:
VLCStyle
.
gridColumnsForWidth
(
root
.
availableRowWidth
)
property
bool
isMusic
//---------------------------------------------------------------------------------------------
// Private
...
...
@@ -215,9 +217,12 @@ MainInterface.MainTableView {
Widgets.TableColumns
{
id
:
table
titleCover_width
:
VLCStyle
.
listAlbumCover_width
titleCover_height
:
VLCStyle
.
listAlbumCover_height
titleCover_radius
:
VLCStyle
.
listAlbumCover_radius
titleCover_width
:
isMusic
?
VLCStyle
.
trackListAlbumCover_width
:
VLCStyle
.
listAlbumCover_width
titleCover_height
:
isMusic
?
VLCStyle
.
trackListAlbumCover_heigth
:
VLCStyle
.
listAlbumCover_height
titleCover_radius
:
isMusic
?
VLCStyle
.
trackListAlbumCover_radius
:
VLCStyle
.
listAlbumCover_radius
showTitleText
:
(
root
.
sortModel
===
root
.
_modelSmall
)
showCriterias
:
showTitleText
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt/medialibrary/qml/PlaylistMediaDisplay.qml
+
2
−
0
View file @
0cf4d52d
...
...
@@ -158,6 +158,8 @@ FocusScope {
dragItem
:
root
.
dragItem
isMusic
:
root
.
isMusic
header
:
Widgets.SubtitleLabel
{
id
:
label
...
...
This diff is collapsed.
Click to expand it.
Pierre Lamot
@chub
mentioned in issue
#28105 (closed)
·
1 year ago
mentioned in issue
#28105 (closed)
mentioned in issue #28105
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment