summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'kde-apps/kdenlive/files/kdenlive-17.04.2-gcc7.patch')
-rw-r--r--kde-apps/kdenlive/files/kdenlive-17.04.2-gcc7.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/kde-apps/kdenlive/files/kdenlive-17.04.2-gcc7.patch b/kde-apps/kdenlive/files/kdenlive-17.04.2-gcc7.patch
deleted file mode 100644
index 3499d7feab72..000000000000
--- a/kde-apps/kdenlive/files/kdenlive-17.04.2-gcc7.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 2ed43d34a124609aef092164e2e58e5476228209 Mon Sep 17 00:00:00 2001
-From: Jean-Baptiste Mardelle <jb@kdenlive.org>
-Date: Mon, 19 Jun 2017 13:21:16 +0200
-Subject: Fix compilation
-
----
- src/scopes/audioscopes/spectrogram.cpp | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/scopes/audioscopes/spectrogram.cpp b/src/scopes/audioscopes/spectrogram.cpp
-index 1d3a0a2..244e137 100644
---- a/src/scopes/audioscopes/spectrogram.cpp
-+++ b/src/scopes/audioscopes/spectrogram.cpp
-@@ -241,8 +241,8 @@ QImage Spectrogram::renderHUD(uint)
- x = leftDist + (m_innerScopeRect.width() - 1) * ((float)hz) / m_freqMax;
-
- // Hide text if it would overlap with the text drawn at the mouse position
-- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 20)) < (int) minDistX + 16
-- && mouseX < m_innerScopeRect.width() && mouseX >= 0;
-+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (int)(leftDist + mouseX + 20)) < (int) minDistX + 16
-+ && mouseX < m_innerScopeRect.width() && mouseX >= 0;
-
- if (x <= rightBorder) {
- davinci.drawLine(x, topDist, x, topDist + m_innerScopeRect.height() + 6);
-@@ -268,7 +268,7 @@ QImage Spectrogram::renderHUD(uint)
- }
- // Draw the line at the very right (maximum frequency)
- x = leftDist + m_innerScopeRect.width() - 1;
-- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 30)) < (int) minDistX
-+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && qAbs(x - (int)(leftDist + mouseX + 30)) < (int) minDistX
- && mouseX < m_innerScopeRect.width() && mouseX >= 0;
- davinci.drawLine(x, topDist, x, topDist + m_innerScopeRect.height() + 6);
- if (!hideText) {
---
-cgit v0.11.2