Skip to content

Commit b01fc55

Browse files
authored
Merge branch 'master' into jeremypw/sourceview/use-glib-menu
2 parents 1f22d69 + 116f75e commit b01fc55

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

data/code.metainfo.xml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
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

@@ -68,7 +68,7 @@
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>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project(
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

88
add_project_arguments([

src/Dialogs/BranchActions/BranchListBox.vala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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 () {

0 commit comments

Comments
 (0)