Skip to content

Commit

Permalink
change label order
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jul 12, 2020
1 parent 5da52d1 commit 51041f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Views/SystemView/SystemMemoryView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public class Monitor.SystemMemoryView : Gtk.Grid {
Gtk.Grid grid = new Gtk.Grid ();
grid.column_spacing = 12;

grid.attach (memory_total_label, 0, 0, 1, 1);
grid.attach (memory_used_label, 1, 0, 1, 1);
grid.attach (memory_used_label, 0, 0, 1, 1);
grid.attach (memory_total_label, 1, 0, 1, 1);
grid.attach (memory_shared_label, 0, 1, 1, 1);
grid.attach (memory_buffered_label, 1, 1, 1, 1);
grid.attach (memory_cached_label, 0, 2, 1, 1);
Expand Down

0 comments on commit 51041f2

Please sign in to comment.