gammaray/Fix_icons_installation.patch
Fabian Vogt d953fa42ff Accepting request 574654 from home:alarrosa:branches:KDE:Extra
- Update to 2.9.0:
  * Improve Qt Quick Controls 2 tracer coloring.
  * Fix issues with QSG diagnostic render modes in combination with QQuickWidget.
  * Improve input validation in the connect dialog.
  * Fix Qt Quick remote view on targets without GL_BGRA support.
  * Add texture and texture atlas inspection for QSGMaterial using objects.
  * Only read and send the actually visible screen content in the Qt Quick remote view.
  * Support dynamic shaders in the QSGMaterial shader view.
  * Show vertex and fragment uniforms for shader effects in the QSGMaterial tab.
  * Fix crashes during changing/restoring QSG diagnostic render modes.
  * Batch row/column count requests for better remote model performance.
  * Drop support for CMake 2.8, at least 3.0 is required now.
  * Improved performance in the Qt Quick inspector.
  * Add support for QSGRenderNode.
  * Consider compiler version as part of the probe ABI on Windows.
  * Fix multithreading issues in the timer inspector.
  * Add search line to timer inspector.
  * Add screenshot support in Qt Quick inspector.
  * Improve item picking support in Qt Quick inspector.
  * Add texture waste indicator to texture inspection tab.
  * Add color picker for remote views.
  * Add object navigation and source navigation to the timer inspector.
  * Add support for cross-architecture injection on Windows.
  * Add support for editing enum/flag properties not registered with the Qt meta object system.
  * Add network configuration view.
  * Improved indication that a target process is being inspected by GammaRay.
  * Add widget tab focus chain visualization.
  * Fix re-attaching to a target application on Windows.
  * Add QML binding inspector (requires Qt 5.10 or newer).
  * Add support for QtWebEngine to the web inspector tool.

OBS-URL: https://build.opensuse.org/request/show/574654
OBS-URL: https://build.opensuse.org/package/show/KDE:Extra/gammaray?expand=0&rev=29
2018-02-09 20:23:48 +00:00

34 lines
1.2 KiB
Diff

Index: gammaray-2.9.0/ui/resources/CMakeLists.txt
===================================================================
--- gammaray-2.9.0.orig/ui/resources/CMakeLists.txt
+++ gammaray-2.9.0/ui/resources/CMakeLists.txt
@@ -1,14 +1,14 @@
# See https://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
if(UNIX AND NOT APPLE AND GAMMARAY_BUILD_UI)
foreach(size 16 24 32 48 64 128 256 512)
- foreach(scale 1 2 3)
+ #foreach(scale 1 2 3)
set(scaled_size ${size}x${size})
set(source gammaray/GammaRay-${scaled_size}.png)
- if(${scale} GREATER 1)
- set(scaled_size ${size}x${size}@${scale})
- set(source gammaray/GammaRay-${scaled_size}x.png)
- endif()
+ #if(${scale} GREATER 1)
+ # set(scaled_size ${size}x${size}@${scale})
+ # set(source gammaray/GammaRay-${scaled_size}x.png)
+ #endif()
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${source})
install(
@@ -16,7 +16,7 @@ if(UNIX AND NOT APPLE AND GAMMARAY_BUILD
DESTINATION "${ICON_INSTALL_DIR}/hicolor/${scaled_size}/apps" RENAME GammaRay.png
)
endif()
- endforeach()
+ #endforeach()
endforeach()
endif()