File tree Expand file tree Collapse file tree
src/Dialogs/BranchActions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929
3030 <screenshots >
3131 <screenshot type =" default" >
32- <image >https://raw.githubusercontent.com/elementary/code/8.3.0 /data/screenshot.png</image >
32+ <image >https://raw.githubusercontent.com/elementary/code/8.3.1 /data/screenshot.png</image >
3333 </screenshot >
3434 <screenshot >
35- <image >https://raw.githubusercontent.com/elementary/code/8.3.0 /data/screenshot-dark.png</image >
35+ <image >https://raw.githubusercontent.com/elementary/code/8.3.1 /data/screenshot-dark.png</image >
3636 </screenshot >
3737 </screenshots >
3838
6868 <update_contact >contact_AT_elementary.io</update_contact >
6969
7070 <releases >
71- <release version =" 8.3.1" date =" 2026-06-15 " urgency =" medium" >
71+ <release version =" 8.3.1" date =" 2026-06-19 " urgency =" medium" >
7272 <description >
7373 <p >Improvements:</p >
7474 <ul >
Original file line number Diff line number Diff line change 22 ' io.elementary.code' ,
33 ' vala' , ' c' ,
44 meson_version : ' >= 0.58.0' ,
5- version : ' 8.3.0 '
5+ version : ' 8.3.1 '
66)
77
88add_project_arguments ([
Original file line number Diff line number Diff line change 44*
55* Authored by: Jeremy Wootten <jeremywootten@gmail.com>
66*/
7- private class Scratch.Dialogs.BranchListBox : Gtk .Bin {
7+ private class Scratch.Dialogs.BranchListBox : Gtk .Box {
88
99 public signal void branch_changed (string branch_name );
1010
@@ -31,6 +31,9 @@ private class Scratch.Dialogs.BranchListBox : Gtk.Bin {
3131 }
3232
3333 construct {
34+ orientation = VERTICAL ;
35+ spacing = 6 ;
36+
3437 list_box = new Gtk .ListBox () {
3538 activate_on_single_click = false
3639 };
@@ -47,12 +50,6 @@ private class Scratch.Dialogs.BranchListBox : Gtk.Bin {
4750 placeholder_text = _ ("Enter search term ")
4851 };
4952
50- var box = new Gtk .Box (VERTICAL , 6 );
51- box.add (search_entry );
52- box.add (scrolled_window );
53-
54- child = box;
55-
5653 recent_header = new Granite .HeaderLabel (_(" Recent Branches" ));
5754 local_header = new Granite .HeaderLabel (_(" Local Branches" ));
5855 remote_header = new Granite .HeaderLabel (_(" Remote Branches" ));
@@ -91,6 +88,9 @@ private class Scratch.Dialogs.BranchListBox : Gtk.Bin {
9188 search_entry.activate.connect (() => {
9289 dialog. page_activated ();
9390 });
91+
92+ add (search_entry );
93+ add (scrolled_window );
9494 }
9595
9696 public BranchNameRow ? get_selected_row () {
You can’t perform that action at this time.
0 commit comments