diff --git a/core/Services/CalDAV/Core.vala b/core/Services/CalDAV/Core.vala index 6c21e03b7..6198c9c3f 100644 --- a/core/Services/CalDAV/Core.vala +++ b/core/Services/CalDAV/Core.vala @@ -305,6 +305,7 @@ public class Services.CalDAV.Core : GLib.Object { try { if (project.sync_id == "") { + project.loading = false; return; } diff --git a/src/MainWindow.vala b/src/MainWindow.vala index ebb8ff8ca..b1c3f43ed 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -127,8 +127,8 @@ public class MainWindow : Adw.ApplicationWindow { var breakpoint = new Adw.Breakpoint (Adw.BreakpointCondition.parse ("max-width: 800sp")); breakpoint.add_setter (overlay_split_view, "collapsed", true); - add_breakpoint (breakpoint); + content = overlay_split_view; Services.Settings.get_default ().settings.bind ("pane-position", overlay_split_view, "min_sidebar_width", GLib.SettingsBindFlags.DEFAULT); diff --git a/src/Widgets/SubItems.vala b/src/Widgets/SubItems.vala index 1c1645c05..99c32f9d7 100644 --- a/src/Widgets/SubItems.vala +++ b/src/Widgets/SubItems.vala @@ -117,8 +117,7 @@ public class Widgets.SubItems : Adw.Bin { selection_mode = Gtk.SelectionMode.SINGLE, hexpand = true, css_classes = { "listbox-background" }, - margin_start = 3, - margin_end = 6 + margin_start = 3 }; checked_revealer = new Gtk.Revealer () {