Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 25ad979

Browse files
committed
less dbus-calls on startup
1 parent 61322cc commit 25ad979

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/Widgets/ColumnView.vala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,10 +388,12 @@ public class FeedReader.ColumnView : Gtk.Paned {
388388
m_articleList.syncFinished();
389389
}
390390

391+
/*
391392
public void updateAccountInfo()
392393
{
393394
m_feedList.updateAccountInfo();
394395
}
396+
*/
395397

396398
public Gdk.RGBA getBackgroundColor()
397399
{

src/Widgets/FeedList.vala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -944,10 +944,12 @@ public class FeedReader.feedList : Gtk.ScrolledWindow {
944944
return false;
945945
}
946946

947+
/*
947948
public void updateAccountInfo()
948949
{
949950
m_branding.refresh();
950951
}
952+
*/
951953

952954
public void setOffline()
953955
{

src/Widgets/MainWindow.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public class FeedReader.MainWindow : Gtk.ApplicationWindow
233233
ColumnView.get_default().newFeedList();
234234
m_stack.set_visible_child_full("content", transition);
235235
ColumnView.get_default().getHeader().setButtonsSensitive(true);
236-
ColumnView.get_default().updateAccountInfo();
236+
//ColumnView.get_default().updateAccountInfo();
237237

238238
if(!ColumnView.get_default().isFullscreen())
239239
{

src/Widgets/ServiceInfo.vala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ public class FeedReader.ServiceInfo : Gtk.Overlay {
3131
m_label.margin_end = 10;
3232
m_label.set_ellipsize(Pango.EllipsizeMode.END);
3333

34-
refresh();
35-
3634
m_box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
3735
m_box.pack_start(m_logo, false, false, 0);
3836
m_box.pack_start(m_label, false, false, 5);

0 commit comments

Comments
 (0)