summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Figueiredo2021-09-20 23:42:31 +0100
committerJoão Figueiredo2021-09-20 23:42:31 +0100
commit4947d19508fef9db0651f61baadd2577343185d8 (patch)
tree68461f538bd944b5b4aa397eceb10f7ab8fd047d
parentade3882a8219185776e4f26b95a0f06f8d5c368f (diff)
downloadaur-4947d19508fef9db0651f61baadd2577343185d8.tar.gz
Check out this cool patch I made
-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();
+ }
+