mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 08:03:51 +02:00
parent
173bed201b
commit
0d5607a958
2 changed files with 75 additions and 2 deletions
73
srcpkgs/shotcut/patches/qt6.6-timeline.patch
Normal file
73
srcpkgs/shotcut/patches/qt6.6-timeline.patch
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
From 4f92e2c3f4dc562fd92d631239a3203555c8ae52 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Jason E. Hale" <jhale@FreeBSD.org>
|
||||||
|
Date: Thu, 19 Oct 2023 21:09:40 -0400
|
||||||
|
Subject: [PATCH] Don't shadow FINAL properties. Fixes #1479 (#1481)
|
||||||
|
|
||||||
|
---
|
||||||
|
.../views/timeline/CornerSelectionShadow.qml | 4 ++--
|
||||||
|
src/qml/views/timeline/timeline.qml | 18 +++++++++---------
|
||||||
|
2 files changed, 11 insertions(+), 11 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/qml/views/timeline/CornerSelectionShadow.qml b/src/qml/views/timeline/CornerSelectionShadow.qml
|
||||||
|
index 348fa780f6..2b3c8102f4 100644
|
||||||
|
--- a/src/qml/views/timeline/CornerSelectionShadow.qml
|
||||||
|
+++ b/src/qml/views/timeline/CornerSelectionShadow.qml
|
||||||
|
@@ -19,11 +19,11 @@ import QtQuick
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
- property Item clip
|
||||||
|
+ property Item clipN
|
||||||
|
property bool mirrorGradient: false
|
||||||
|
|
||||||
|
width: 100
|
||||||
|
- height: clip ? clip.height : 0
|
||||||
|
+ height: clipN ? clipN.height : 0
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: shadowGradient
|
||||||
|
diff --git a/src/qml/views/timeline/timeline.qml b/src/qml/views/timeline/timeline.qml
|
||||||
|
index 98dbff27e1..bd2c60a049 100644
|
||||||
|
--- a/src/qml/views/timeline/timeline.qml
|
||||||
|
+++ b/src/qml/views/timeline/timeline.qml
|
||||||
|
@@ -534,16 +534,16 @@ Rectangle {
|
||||||
|
model: timeline.selection
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
- property var clip: trackAt(modelData.y).clipAt(modelData.x)
|
||||||
|
- property var track: typeof clip !== 'undefined' && typeof dragDelta !== 'undefined' ? trackAt(clip.trackIndex + dragDelta.y) : 0
|
||||||
|
+ property var clipN: trackAt(modelData.y).clipAt(modelData.x)
|
||||||
|
+ property var track: typeof clipN !== 'undefined' && typeof dragDelta !== 'undefined' ? trackAt(clipN.trackIndex + dragDelta.y) : 0
|
||||||
|
|
||||||
|
- x: clip && typeof dragDelta !== 'undefined' ? clip.x + dragDelta.x : 0
|
||||||
|
+ x: clipN && typeof dragDelta !== 'undefined' ? clipN.x + dragDelta.x : 0
|
||||||
|
y: track ? track.y : 0
|
||||||
|
- width: clip ? clip.width : 0
|
||||||
|
+ width: clipN ? clipN.width : 0
|
||||||
|
height: track ? track.height : 0
|
||||||
|
color: 'transparent'
|
||||||
|
border.color: 'red'
|
||||||
|
- visible: clip && !clip.Drag.active && clip.trackIndex === clip.originalTrackIndex
|
||||||
|
+ visible: clipN && !clipN.Drag.active && clipN.trackIndex === clipN.originalTrackIndex
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -574,14 +574,14 @@ Rectangle {
|
||||||
|
|
||||||
|
CornerSelectionShadow {
|
||||||
|
y: tracksRepeater.count ? tracksRepeater.itemAt(timeline.currentTrack).y + ruler.height - tracksFlickable.contentY : 0
|
||||||
|
- clip: timeline.selection.length ? tracksRepeater.itemAt(timeline.selection[0].y).clipAt(timeline.selection[0].x) : null
|
||||||
|
- opacity: clip && clip.x + clip.width < tracksFlickable.contentX ? 1 : 0
|
||||||
|
+ clipN: timeline.selection.length ? tracksRepeater.itemAt(timeline.selection[0].y).clipAt(timeline.selection[0].x) : null
|
||||||
|
+ opacity: clipN && clipN.x + clipN.width < tracksFlickable.contentX ? 1 : 0
|
||||||
|
}
|
||||||
|
|
||||||
|
CornerSelectionShadow {
|
||||||
|
y: tracksRepeater.count ? tracksRepeater.itemAt(timeline.currentTrack).y + ruler.height - tracksFlickable.contentY : 0
|
||||||
|
- clip: timeline.selection.length ? tracksRepeater.itemAt(timeline.selection[timeline.selection.length - 1].y).clipAt(timeline.selection[timeline.selection.length - 1].x) : null
|
||||||
|
- opacity: clip && clip.x > tracksFlickable.contentX + tracksFlickable.width ? 1 : 0
|
||||||
|
+ clipN: timeline.selection.length ? tracksRepeater.itemAt(timeline.selection[timeline.selection.length - 1].y).clipAt(timeline.selection[timeline.selection.length - 1].x) : null
|
||||||
|
+ opacity: clipN && clipN.x > tracksFlickable.contentX + tracksFlickable.width ? 1 : 0
|
||||||
|
anchors.right: parent.right
|
||||||
|
mirrorGradient: true
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'shotcut'
|
# Template file for 'shotcut'
|
||||||
pkgname=shotcut
|
pkgname=shotcut
|
||||||
version=23.05.14
|
version=23.09.29
|
||||||
revision=1
|
revision=1
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
configure_args="-DSHOTCUT_VERSION=${version}"
|
configure_args="-DSHOTCUT_VERSION=${version}"
|
||||||
|
@ -15,6 +15,6 @@ license="GPL-3.0-or-later"
|
||||||
homepage="https://www.shotcut.org"
|
homepage="https://www.shotcut.org"
|
||||||
changelog="https://github.com/mltframework/shotcut/releases"
|
changelog="https://github.com/mltframework/shotcut/releases"
|
||||||
distfiles="https://github.com/mltframework/shotcut/archive/v${version}.tar.gz"
|
distfiles="https://github.com/mltframework/shotcut/archive/v${version}.tar.gz"
|
||||||
checksum=94632bd69cc8f3b2cba0668b9e8d051493efa5a9c9554c02822c346fe64c1ce0
|
checksum=c76ee1b85bac4bf5e601601e85b4e3d3e2c8579c40ad923d39f2e34f6034a975
|
||||||
|
|
||||||
CXXFLAGS="-DHAVE_LOCALE_H=1 -DSHOTCUT_NOUPGRADE"
|
CXXFLAGS="-DHAVE_LOCALE_H=1 -DSHOTCUT_NOUPGRADE"
|
||||||
|
|
Loading…
Add table
Reference in a new issue