Skip to content

Commit a353526

Browse files
committed
credit contributions from @ARAKHN1D
1 parent 01fdf85 commit a353526

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

data/com.github.maoschanz.drawing.gschema.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<description>The default color background of a new image.</description>
7979
</key>
8080
<key type="i" name="default-width">
81-
<default>1000</default>
81+
<default>1030</default>
8282
<summary>Default width</summary>
8383
<description>Default width of a new image (px).</description>
8484
</key>
@@ -90,7 +90,7 @@
9090

9191
<!-- Remembered state of the window -->
9292
<key type="i" name="window-width">
93-
<default>1000</default>
93+
<default>580</default>
9494
<summary>Width of the window</summary>
9595
<description>The width of the last closed window.</description>
9696
</key>

debian/changelog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ drawing (1.2.0) unstable; urgency=low
1313
* preserve transparency of the original area when skewing with a solid background color
1414
* add "circle" and "checkmark" options to the "points" tool (#458)
1515
* fix the font antialiasing for the "points" tool (#458)
16+
* remember the value of the window size (#634 by @ARAKHN1D)
17+
* change the bug report link to help people without a github account (#641 by @ARAKHN1D)
1618
* update several translations
1719

1820
-- Romain F. T. <rrroschan@gmail.com> Sat, 16 Mar 2024 13:12:00 +0100

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def on_about(self, *args):
283283
"""Action callback, showing the "about" dialog."""
284284
about_dialog = Gtk.AboutDialog(transient_for=self.props.active_window,
285285
copyright="© 2018-2023 Romain F. T.",
286-
authors=["Romain F. T.", "Fábio Colacio", "Alexis Lozano"],
286+
authors=["Romain F. T.", "Fábio Colacio", "Alexis Lozano", "Arak @ARAKHN1D"],
287287
# To translators: "translate" this by a list of your names (one name
288288
# per line), they will be displayed in the "about" dialog
289289
translator_credits=_("translator-credits"),

src/optionsbars/classic/optionsbar-classic.ui

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<interface domain="drawing">
33
<object class="GtkAdjustment" id="adjustment_size">
44
<property name="lower">1</property>
5-
<property name="upper">80</property>
5+
<property name="upper">99</property>
66
<property name="step_increment">1</property>
77
<property name="page_increment">4</property>
88
<property name="value">10</property>
@@ -150,3 +150,4 @@ size-8-symbolic</property>
150150
</child>
151151
</object>
152152
</interface>
153+

src/ui/window.ui

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
</object>
1010

1111
<template class="DrWindow" parent="GtkApplicationWindow">
12-
<property name="default-width">1030</property>
13-
<property name="default-height">580</property>
1412
<property name="icon-name">com.github.maoschanz.drawing</property>
1513
<child>
1614
<object class="GtkBox" id="main_box">

0 commit comments

Comments
 (0)