Ubuntu Pastebin

Paste from Nick Dedekind at Tue, 20 Jan 2015 15:34:23 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
=== modified file 'qml/Panel/Indicators/VisibleIndicators.qml'
--- qml/Panel/Indicators/VisibleIndicators.qml  2014-12-19 14:51:35 +0000
+++ qml/Panel/Indicators/VisibleIndicators.qml  2015-01-20 15:33:02 +0000
@@ -68,7 +68,7 @@
                 updateVisibility();
             }
 
-            onEnabledChanged: {
+            onIndicatorVisibleChanged: {
                 updateVisibility()
             }
 
@@ -76,7 +76,7 @@
                 if (repeater.visibleIndicators === undefined) {
                     repeater.visibleIndicators = {}
                 }
-                repeater.visibleIndicators[model.identifier] = enabled;
+                repeater.visibleIndicators[model.identifier] = indicatorVisible;
                 repeater.visibleIndicatorsChanged();
             }
         }

=== modified file 'run.sh'
--- run.sh      2015-01-20 13:09:56 +0000
+++ run.sh      2015-01-20 14:41:38 +0000
@@ -39,7 +39,7 @@
 
 if $USE_MOCKS; then
   export QML2_IMPORT_PATH=$QML2_IMPORT_PATH:$PWD/builddir/tests/mocks:$PWD/builddir/plugins:$PWD/builddir/modules
-  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/builddir/tests/mocks/LightDM/liblightdm:$PWD/builddir/tests/mocks/libusermetrics
+  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/builddir/tests/mocks/LightDM/liblightdm:$PWD/builddir/tests/mocks/libusermetrics:${PWD}/builddir/tests/mocks/QMenuModel
 else
   export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/builddir/plugins/LightDM/liblightdm
 fi
Download as text