Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Indicator/Widgets/DisplayWidget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
2 changes: 1 addition & 1 deletion src/Views/PreferencesView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading