File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ public class Tuba.Dialogs.Composer.Dialog : Adw.Dialog {
341341 Adw . BreakpointConditionLengthType . MAX_WIDTH ,
342342 400 , Adw . LengthUnit . SP
343343 );
344- var breakpoint = new Adw .Breakpoint (condition);
344+ var breakpoint = new Adw .Breakpoint (condition. copy() );
345345 breakpoint. add_setter (this , " is-narrow" , true );
346346 add_breakpoint (breakpoint);
347347
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public class Tuba.Views.Admin.Page.Accounts : Views.Admin.Page.Base {
5353 Adw . BreakpointConditionLengthType . MAX_WIDTH ,
5454 450 , Adw . LengthUnit . SP
5555 );
56- var breakpoint = new Adw .Breakpoint (condition);
56+ var breakpoint = new Adw .Breakpoint (condition. copy() );
5757 breakpoint. add_setter (revealer_box, " halign" , Gtk . Align . FILL );
5858 breakpoint. add_setter (entry_box_1, " orientation" , Gtk . Orientation . VERTICAL );
5959 breakpoint. add_setter (entry_box_2, " orientation" , Gtk . Orientation . VERTICAL );
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ public class Tuba.Views.TabbedBase : Views.Base {
101101
102102 if (this . current_breakpoint != null ) remove_breakpoint (this . current_breakpoint);
103103 this . small = true ;
104- var breakpoint = new Adw .Breakpoint (condition);
104+ var breakpoint = new Adw .Breakpoint (condition. copy() );
105105 breakpoint. add_setter (this , " title-stack-page-visible" , true );
106106 breakpoint. add_setter (switcher_bar, " reveal" , true );
107107 add_breakpoint (breakpoint);
You can’t perform that action at this time.
0 commit comments