From 3d3ee9f504b3e4357a69ec7adb8dd679af88913f Mon Sep 17 00:00:00 2001 From: Vishal Rao Date: Tue, 25 Aug 2026 08:37:19 +0530 Subject: [PATCH] Swap positions of network indicators and preferences checkboxes Move network download indicator/checkbox to the left of upload. --- src/Indicator/Widgets/DisplayWidget.vala | 2 +- src/Views/PreferencesView.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Indicator/Widgets/DisplayWidget.vala b/src/Indicator/Widgets/DisplayWidget.vala index 01fca412c..9a8becd72 100644 --- a/src/Indicator/Widgets/DisplayWidget.vala +++ b/src/Indicator/Widgets/DisplayWidget.vala @@ -89,7 +89,7 @@ public class Monitor.Widgets.DisplayWidget : Gtk.Box { append (gpu_widget); append (gpu_memory_widget); append (gpu_temperature_widget); - append (network_up_widget); append (network_down_widget); + append (network_up_widget); } } diff --git a/src/Views/PreferencesView.vala b/src/Views/PreferencesView.vala index fcb82da1f..ee2d1e88d 100644 --- a/src/Views/PreferencesView.vala +++ b/src/Views/PreferencesView.vala @@ -122,8 +122,8 @@ public class Monitor.PreferencesView : Granite.Bin { indicator_options_box.append (gpu_memory_check); indicator_options_box.append (gpu_temp_check); indicator_options_box.append (new Gtk.Separator (HORIZONTAL)); - indicator_options_box.append (network_upload_check); indicator_options_box.append (network_download_check); + indicator_options_box.append (network_upload_check); var indicator_options_revealer = new Gtk.Revealer () { child = indicator_options_box