Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
1a03fe69
Commit
1a03fe69
authored
Mar 29, 2020
by
Jean-Baptiste Mardelle
Browse files
Attempt to have better breeze style icons in timeline
parent
fc1f4e54
Changes
3
Hide whitespace changes
Inline
Side-by-side
packaging/appimage/build-image.sh
View file @
1a03fe69
...
...
@@ -159,7 +159,7 @@ linuxdeployqt $APPDIR/usr/share/applications/org.kde.kdenlive.desktop \
-qmldir
=
$DEPS_INSTALL_PREFIX
/qml
\
-verbose
=
2
\
-bundle-non-qt-libs
\
-extra-plugins
=
$APPDIR
/usr/lib/mlt,
$APPDIR
/usr/plugins
\
-extra-plugins
=
$APPDIR
/usr/lib/mlt,
$APPDIR
/usr/plugins
,
$APPDIR
/usr/qml
\
-exclude-libs
=
libnss3.so,libnssutil3.so,libGL.so.1
# -appimage \
...
...
src/core.cpp
View file @
1a03fe69
...
...
@@ -128,7 +128,9 @@ void Core::initGUI(const QUrl &Url, const QString &clipsToLoad)
m_mainWindow
=
new
MainWindow
();
m_guiConstructed
=
true
;
QStringList
styles
=
QQuickStyle
::
availableStyles
();
if
(
styles
.
contains
(
QLatin1String
(
"org.kde.desktop"
)))
{
if
(
styles
.
contains
(
QLatin1String
(
"Plasma"
)))
{
QQuickStyle
::
setStyle
(
"Plasma"
);
}
else
if
(
styles
.
contains
(
QLatin1String
(
"org.kde.desktop"
)))
{
QQuickStyle
::
setStyle
(
"org.kde.desktop"
);
}
else
if
(
styles
.
contains
(
QLatin1String
(
"Fusion"
)))
{
QQuickStyle
::
setStyle
(
"Fusion"
);
...
...
src/timeline2/view/qml/TrackHead.qml
View file @
1a03fe69
...
...
@@ -188,8 +188,6 @@ Rectangle {
ToolButton
{
id
:
expandButton
anchors.left
:
parent
.
left
height
:
trackHeadRoot
.
buttonSize
width
:
trackHeadRoot
.
buttonSize
focusPolicy
:
Qt
.
NoFocus
//icon.width: trackHeadRoot.iconSize
//icon.height: trackHeadRoot.iconSize
...
...
@@ -223,7 +221,7 @@ Rectangle {
color
:
trackLed
.
bgColor
}
width
:
fontMetrics
.
boundingRect
(
"
M
"
).
width
*
trackHeadRoot
.
trackTag
.
length
height
:
trackHeadRoot
.
buttonSize
height
:
expandButton
.
height
y
:
1
verticalAlignment
:
Text
.
AlignVCenter
horizontalAlignment
:
Text
.
AlignHCenter
...
...
@@ -309,8 +307,6 @@ Rectangle {
checkable
:
true
enabled
:
trackHeadRoot
.
effectNames
!=
''
checked
:
enabled
&&
trackHeadRoot
.
isStackEnabled
height
:
trackHeadRoot
.
buttonSize
width
:
trackHeadRoot
.
buttonSize
focusPolicy
:
Qt
.
NoFocus
//icon.width: trackHeadRoot.iconSize
//icon.height: trackHeadRoot.iconSize
...
...
@@ -321,8 +317,6 @@ Rectangle {
}
ToolButton
{
id
:
muteButton
height
:
trackHeadRoot
.
buttonSize
width
:
trackHeadRoot
.
buttonSize
focusPolicy
:
Qt
.
NoFocus
//icon.width: trackHeadRoot.iconSize
//icon.height: trackHeadRoot.iconSize
...
...
@@ -346,8 +340,6 @@ Rectangle {
ToolButton
{
id
:
lockButton
height
:
trackHeadRoot
.
buttonSize
width
:
trackHeadRoot
.
buttonSize
focusPolicy
:
Qt
.
NoFocus
//icon.width: trackHeadRoot.iconSize
//icon.height: trackHeadRoot.iconSize
...
...
Eugen Mohr
@emohr
mentioned in issue
#552 (closed)
·
Mar 31, 2020
mentioned in issue
#552 (closed)
mentioned in issue #552
Toggle commit list
Davy Bartoloni
🍕
@bartoloni
·
Apr 01, 2020
semms that icons are now too big.
semms that icons are now too big.
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment