summary refs log tree commit diff
path: root/pkgs/desktops/kde-5
diff options
context:
space:
mode:
authorAlex Ivanov <gnidorah@users.noreply.github.com>2017-01-06 06:18:26 +0300
committerAlex Ivanov <gnidorah@users.noreply.github.com>2017-01-06 06:18:26 +0300
commit5fad2a943bb4f4f35474fb8bbabd3c40374061d4 (patch)
tree320a2355a7f8887c1feea57548545869d3f93f49 /pkgs/desktops/kde-5
parent2a57c1e60f3cfa4342e283e965cf016f7b44bd04 (diff)
downloadnixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar.gz
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar.bz2
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar.lz
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar.xz
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.tar.zst
nixpkgs-5fad2a943bb4f4f35474fb8bbabd3c40374061d4.zip
kde-gtk-config: follow symlinks for cursors
Diffstat (limited to 'pkgs/desktops/kde-5')
-rw-r--r--pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
index 759eda4cc13..d610d19eedd 100644
--- a/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
+++ b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
@@ -37,3 +37,16 @@ index 07c7ad7..b04d978 100644
 -- 
 2.6.2
 
+diff --git a/src/cursorthemesmodel.cpp b/src/cursorthemesmodel.cpp
+index 926a666..85b10f8 100644
+--- a/src/cursorthemesmodel.cpp
++++ b/src/cursorthemesmodel.cpp
+@@ -47,7 +47,7 @@ QList<QDir> CursorThemesModel::installedThemesPaths()
+ 
+     foreach(const QString& dir, dirs) {
+         QDir userIconsDir(dir);
+-        QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks);
++        QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs);
+         while(it.hasNext()) {
+             QString currentPath = it.next();
+             QDir dir(currentPath);