summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--switch_rx-tx.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/switch_rx-tx.patch b/switch_rx-tx.patch
new file mode 100644
index 000000000000..207cf482a6de
--- /dev/null
+++ b/switch_rx-tx.patch
@@ -0,0 +1,16 @@
+Make the "Text" icon show rx below tx.
+It's much more intuitive for the download rate to be down and the upload rate to be up!
+
+diff --git a/src/knemod/trayicon.cpp b/src/knemod/trayicon.cpp
+index 95ae383..a12af26 100644
+--- a/src/knemod/trayicon.cpp
++++ b/src/knemod/trayicon.cpp
+@@ -412,7 +412,7 @@ void TrayIcon::updateTextIcon( bool force )
+ if ( !force )
+ return;
+
+- setIconByPixmap( genTextIcon(m_rxText, m_txText, plasmaTheme->smallestFont(), mInterface->backendData()->status) );
++ setIconByPixmap( genTextIcon(m_txText, m_rxText, plasmaTheme->smallestFont(), mInterface->backendData()->status) );
+ QPixmapCache::clear();
+ }
+