Skip to content

Commit 4f396bf

Browse files
committed
Fully clickable editablelabel
1 parent 80cb68a commit 4f396bf

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

data/Application.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,12 @@ windowcontrols:backdrop button {
2424

2525
editablelabel {
2626
font-weight: 800;
27-
padding-left: 24px;
28-
padding-right: 24px;
2927
text-shadow: 0px 1px rgba(255,255,255,0.5);
3028
/* text-shadow: none; */
3129
letter-spacing: .04em;
3230
}
3331

34-
textview.text,
32+
textview.view,
3533
editablelabel.editing {
3634
background-image: none;
3735
font-weight: 500;

data/jorts.metainfo.xml.in

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,18 @@
9898
<description>
9999
<p>3.6.0 Jorts of Hyperspace</p>
100100
<ul>
101-
<li>Under the hood performance improvements</li>
101+
<li>Various under the hood performance improvements</li>
102+
<li>A couple visual bugfixes as well!</li>
103+
<li>More zoom options</li>
102104
</ul>
103105
<p>😎 Guests stars:</p>
104106
<ul>
105107
<li>Updated JA translation thanks to @ryonakano!</li>
106108
</ul>
107109
</description>
108110
<issues>
109-
<issue url="https://github.com/ellie-commons/jorts/issues/79">Fixed zoom impacting emoji chooser and context menu</issue>
111+
<issue url="https://github.com/ellie-commons/jorts/issues/79">Fixed zoom impacting emojichooser and context menu</issue>
112+
<issue url="https://github.com/ellie-commons/jorts/issues/95">Fixed coloring bleeding into icons in emojichooser and context menu</issue>
110113
</issues>
111114
</release>
112115
<release version="3.5.0" date="2025-11-06">

src/Widgets/EditableLabel.vala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ public class Jorts.EditableLabel : Granite.Bin {
4141
tooltip_markup = Granite.markup_accel_tooltip (
4242
{"<Control>L"},
4343
_("Click to edit the title")
44-
)
44+
),
45+
margin_start = 24,
46+
margin_end = 24
4547
};
4648
editablelabel.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL);
4749
child = editablelabel;

0 commit comments

Comments
 (0)