Skip to content

Commit cadecb5

Browse files
committed
change spacing
1 parent f82a431 commit cadecb5

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

data/jorts.metainfo.xml.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
<p>🚀 4.0.0 Jorts of Hyperspace!</p>
100100
<ul>
101101
<li>Version 4 to align with Gtk version</li>
102+
<li>Added button to toggle lists, and ability to customize them</li>
102103
<li>Ctrl+Scroll to zoom-in, zoom-out</li>
103104
<li>More zoom options</li>
104105
<li>Keyboard shortcuts work from popover now</li>
@@ -114,7 +115,8 @@
114115
<issues>
115116
<issue url="https://github.com/ellie-commons/jorts/issues/79">Fixed zoom impacting emojichooser and context menu</issue>
116117
<issue url="https://github.com/ellie-commons/jorts/issues/95">Fixed coloring bleeding into icons in emojichooser and context menu</issue>
117-
<issue url="https://github.com/ellie-commons/jorts/issues/78">Fixed absence of Ctrl+scroll</issue>
118+
<issue url="https://github.com/ellie-commons/jorts/issues/78">Added Ctrl+scroll</issue>
119+
<issue url="https://github.com/ellie-commons/jorts/issues/63">Added list feature</issue>
118120
</issues>
119121
</release>
120122
<release version="3.5.0" date="2025-11-06">

src/Views/PreferencesView.vala

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,9 @@
6767

6868
var list_entry = new Gtk.Entry () {
6969
halign = Gtk.Align.END,
70-
hexpand = true,
70+
hexpand = false,
7171
valign = Gtk.Align.CENTER,
72+
width_request = 15
7273
};
7374

7475
var list_label = new Granite.HeaderLabel (_("List item symbol")) {
@@ -93,13 +94,13 @@
9394
/* Autostart Request */
9495
/****************************************************/
9596
#if !WINDOWS
96-
var both_buttons = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6) {
97+
var both_buttons = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 5) {
9798
halign = Gtk.Align.FILL
9899
};
99100

100101
///TRANSLATORS: Button to autostart the application
101102
var set_autostart = new Gtk.Button () {
102-
label = _("Set autostart"),
103+
label = _("Autostart"),
103104
valign = Gtk.Align.CENTER
104105
};
105106

@@ -124,7 +125,7 @@
124125
both_buttons.append (set_autostart);
125126
both_buttons.append (remove_autostart);
126127

127-
var autostart_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
128+
var autostart_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 5);
128129

129130
var autostart_label = new Granite.HeaderLabel (_("Allow to start at login")) {
130131
mnemonic_widget = both_buttons,

src/Windows/StickyNoteWindow.vala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ public class Jorts.StickyNoteWindow : Gtk.Window {
250250
private void action_zoom_default () {zoomcontroller.zoom_default ();}
251251
private void action_zoom_in () {zoomcontroller.zoom_in ();}
252252

253+
// Careful! The keyboard counts from 1 to 10 (0), but the themes are from 0 to 9
253254
private void action_theme_1 () {popover.color = (Jorts.Themes.all ())[0];}
254255
private void action_theme_2 () {popover.color = (Jorts.Themes.all ())[1];}
255256
private void action_theme_3 () {popover.color = (Jorts.Themes.all ())[2];}

0 commit comments

Comments
 (0)