Skip to content

Commit 5d58326

Browse files
authored
Merge branch 'main' into lenemter/gtk4
2 parents 425a11c + d8b1e4a commit 5d58326

File tree

3 files changed

+16
-18
lines changed

3 files changed

+16
-18
lines changed

po/he.po

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: PACKAGE VERSION\n"
44
"Report-Msgid-Bugs-To: https://github.com/elementary/gala/issues\n"
55
"POT-Creation-Date: 2025-06-30 17:54+0000\n"
6-
"PO-Revision-Date: 2025-04-15 14:03+0000\n"
6+
"PO-Revision-Date: 2025-10-08 05:55+0000\n"
77
"Last-Translator: Yaron Shahrabani <[email protected]>\n"
88
"Language-Team: Hebrew <https://l10n.elementaryos.org/projects/desktop/gala/"
99
"he/>\n"
@@ -12,7 +12,7 @@ msgstr ""
1212
"Content-Type: text/plain; charset=UTF-8\n"
1313
"Content-Transfer-Encoding: 8bit\n"
1414
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
15-
"X-Generator: Weblate 5.10.4\n"
15+
"X-Generator: Weblate 5.11.4\n"
1616
"X-Launchpad-Export-Date: 2017-02-21 05:47+0000\n"
1717

1818
#: daemon/DBus.vala:84 daemon-gtk3/BackgroundMenu.vala:11
@@ -129,11 +129,11 @@ msgstr "מצב החלון נשמר לפני מצב שינה וכיבוי"
129129

130130
#: data/gala.metainfo.xml.in:103
131131
msgid "Remove scaling effect from menus"
132-
msgstr ""
132+
msgstr "הסרת אפקט התאמת קנה מידה מהתפריטים"
133133

134134
#: data/gala.metainfo.xml.in:104
135135
msgid "Swipe up to close windows in Multitasking View"
136-
msgstr ""
136+
msgstr "יש להחליק למעלה כדי לסגור חלונות בתצוגת ריבוי משימות"
137137

138138
#: data/gala.metainfo.xml.in:135
139139
msgid "Fixed rare crash when a dock window was killed"
@@ -269,10 +269,9 @@ msgstr "צילום מסך מ־%s"
269269

270270
#. / TRANSLATORS: %s represents a name of file manager
271271
#: src/ScreenshotManager.vala:167
272-
#, fuzzy, c-format
273-
#| msgid "Show in Files"
272+
#, c-format
274273
msgid "Show in %s"
275-
msgstr "הצגה בקבצים"
274+
msgstr "הצגה ב־%s"
276275

277276
#: src/ScreenshotManager.vala:174 src/ScreenshotManager.vala:553
278277
msgid "Screenshot taken"

src/BackgroundBlurEffect.vala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,10 @@ public class Gala.BackgroundBlurEffect : Clutter.Effect {
224224
}
225225

226226
private bool update_actor_fbo (int width, int height, float downscale_factor) {
227+
if (width <= 0 || height <= 0) {
228+
return false;
229+
}
230+
227231
if (
228232
texture_width == width &&
229233
texture_height == height &&

src/NotificationStack.vala

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -164,18 +164,13 @@ public class Gala.NotificationStack : Object {
164164
}
165165

166166
public void destroy_notification (Meta.WindowActor notification) {
167-
if (Meta.Prefs.get_gnome_animations ()) {
168-
notification.save_easing_state ();
169-
notification.set_easing_duration (100);
170-
notification.set_easing_mode (Clutter.AnimationMode.EASE_IN_QUAD);
171-
notification.opacity = 0;
167+
notification.save_easing_state ();
168+
notification.set_easing_duration (Utils.get_animation_duration (AnimationDuration.CLOSE));
169+
notification.set_easing_mode (Clutter.AnimationMode.EASE_IN_QUAD);
170+
notification.opacity = 0;
172171

173-
notification.x += stack_width;
174-
notification.restore_easing_state ();
175-
} else {
176-
notification.opacity = 0;
177-
notification.x += stack_width;
178-
}
172+
notification.x += stack_width;
173+
notification.restore_easing_state ();
179174

180175
notifications.remove (notification);
181176
update_positions ();

0 commit comments

Comments
 (0)