FreeBSD Bugzilla – Attachment 176300 Details for
Bug 213558
Failing to compile multimedia/kdenlive
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch fixing build
patch-src_scopes_audioscopes_spectrogram.cpp (text/plain), 1.36 KB, created by
Stefan Ehmann
on 2016-10-30 08:15:24 UTC
(
hide
)
Description:
patch fixing build
Filename:
MIME Type:
Creator:
Stefan Ehmann
Created:
2016-10-30 08:15:24 UTC
Size:
1.36 KB
patch
obsolete
>--- src/scopes/audioscopes/spectrogram.cpp.orig 2016-10-30 07:58:30 UTC >+++ src/scopes/audioscopes/spectrogram.cpp >@@ -241,7 +241,7 @@ 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 >+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x-((int)leftDist + mouseX + 20)) < (int) minDistX + 16 > && mouseX < m_innerScopeRect.width() && mouseX >= 0; > > if (x <= rightBorder) { >@@ -269,7 +269,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 && abs(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) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 213558
:
175850
| 176300