Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/Views/SystemView/SystemNetworkView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ public class Monitor.SystemNetworkView : Gtk.Grid {
private Chart network_chart;
private Network network;

private LabelH4 network_name_label;
private Granite.HeaderLabel network_name_label;
private LabelRoundy network_upload_label;
private LabelRoundy network_download_label;

Expand All @@ -15,7 +15,7 @@ public class Monitor.SystemNetworkView : Gtk.Grid {
public SystemNetworkView (Network _network) {
network = _network;

network_name_label = new LabelH4 (_("Network"));
network_name_label = new Granite.HeaderLabel (_("Network"));

network_download_label = new LabelRoundy (_("DOWN"));
network_download_label.val.set_width_chars (7);
Expand Down
4 changes: 2 additions & 2 deletions src/Views/SystemView/SystemStorageView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ public class Monitor.SystemStorageView : Gtk.Grid {
private Chart storage_chart;
private Storage storage;

private LabelH4 storage_name_label;
private Granite.HeaderLabel storage_name_label;
private LabelRoundy storage_read_label;
private LabelRoundy storage_write_label;

Expand All @@ -17,7 +17,7 @@ public class Monitor.SystemStorageView : Gtk.Grid {
public SystemStorageView (Storage _storage) {
storage = _storage;

storage_name_label = new LabelH4 (_("Storage"));
storage_name_label = new Granite.HeaderLabel (_("Storage"));

storage_write_label = new LabelRoundy (_("WRITE"));
storage_write_label.val.set_width_chars (7);
Expand Down
14 changes: 0 additions & 14 deletions src/Widgets/Labels/LabelH4.vala

This file was deleted.

2 changes: 1 addition & 1 deletion src/Widgets/WidgetResource/WidgetResource.vala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public class Monitor.WidgetResource : Gtk.Box {
private LabelH4 _title = new LabelH4 (Utils.NO_DATA);
private Granite.HeaderLabel _title = new Granite.HeaderLabel (Utils.NO_DATA);

public string title {
set {
Expand Down
3 changes: 1 addition & 2 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ source_app_files = [
'Widgets/Statusbar/Statusbar.vala',
'Widgets/Labels/LabelVertical.vala',
'Widgets/Labels/LabelRoundy.vala',
'Widgets/Labels/LabelH4.vala',
'Widgets/Chart/Chart.vala',
'Widgets/WidgetResource/WidgetResource.vala',

Expand Down Expand Up @@ -123,4 +122,4 @@ if get_option('indicator-wingpanel').enabled()
install: true,
install_dir : wingpanel_dep.get_pkgconfig_variable('indicatorsdir', define_variable: ['libdir', libdir]),
)
endif
endif