Skip to content

Commit 478cf61

Browse files
authored
Merge branch 'main' into lenemter/set-open-in-photos-as-default-action
2 parents 0da114a + a7d79cc commit 478cf61

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

data/gala.metainfo.xml.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
</ul>
3636
</description>
3737
<issues>
38+
<issue url="https://github.com/elementary/gala/issues/1264">Applications menu opened but hidden in full screen mode</issue>
3839
<issue url="https://github.com/elementary/gala/issues/2438">Gala randomly segfaults while closing Libreoffice windows</issue>
40+
<issue url="https://github.com/elementary/gala/issues/2450">Apps not being brought to front</issue>
41+
<issue url="https://github.com/elementary/dock/issues/310">Some apps are not showing up in the dock</issue>
3942
</issues>
4043
</release>
4144

po/hu.po

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: noise\n"
99
"Report-Msgid-Bugs-To: https://github.com/elementary/gala/issues\n"
1010
"POT-Creation-Date: 2025-06-09 20:49+0000\n"
11-
"PO-Revision-Date: 2025-04-23 10:55+0000\n"
11+
"PO-Revision-Date: 2025-06-26 09:55+0000\n"
1212
"Last-Translator: TomiOhl <[email protected]>\n"
1313
"Language-Team: Hungarian <https://l10n.elementaryos.org/projects/desktop/"
1414
"gala/hu/>\n"
@@ -17,7 +17,7 @@ msgstr ""
1717
"Content-Type: text/plain; charset=UTF-8\n"
1818
"Content-Transfer-Encoding: 8bit\n"
1919
"Plural-Forms: nplurals=2; plural=n != 1;\n"
20-
"X-Generator: Weblate 5.10.4\n"
20+
"X-Generator: Weblate 5.11.4\n"
2121
"X-Launchpad-Export-Date: 2017-02-21 05:47+0000\n"
2222

2323
#: daemon/DBus.vala:84 daemon-gtk3/BackgroundMenu.vala:11
@@ -288,14 +288,13 @@ msgstr "Képernyőkép %s"
288288
#: src/ScreenshotManager.vala:171
289289
#, c-format
290290
msgid "Open in %s"
291-
msgstr ""
291+
msgstr "Megnyitás ebben: %s"
292292

293293
#. / TRANSLATORS: %s represents a name of file manager
294294
#: src/ScreenshotManager.vala:178
295-
#, fuzzy, c-format
296-
#| msgid "Show in Files"
295+
#, c-format
297296
msgid "Show in %s"
298-
msgstr "Megjelenítés a Fájlkezelőben"
297+
msgstr "Megjelenítés itt: %s"
299298

300299
#: src/ScreenshotManager.vala:189 src/ScreenshotManager.vala:548
301300
msgid "Screenshot taken"

src/WindowAttentionTracker.vala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* SPDX-License-Identifier: GPL-3.0-or-later
3+
* SPDX-FileCopyrightText: 2024 elementary, Inc. (https://elementary.io)
4+
*/
5+
6+
public class Gala.WindowAttentionTracker : GLib.Object {
7+
public static void init (Meta.Display display) {
8+
display.window_demands_attention.connect (on_window_demands_attention);
9+
display.window_marked_urgent.connect (on_window_demands_attention);
10+
}
11+
12+
private static void on_window_demands_attention (Meta.Window window) {
13+
window.raise ();
14+
window.get_workspace ().activate_with_focus (window, window.display.get_current_time ());
15+
}
16+
}

src/WindowManager.vala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ namespace Gala {
182182
window_tracker = new WindowTracker ();
183183
WindowStateSaver.init (window_tracker);
184184
window_tracker.init (display);
185+
WindowAttentionTracker.init (display);
185186

186187
notification_stack = new NotificationStack (display);
187188

src/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ gala_bin_sources = files(
1414
'ScreenshotManager.vala',
1515
'SessionManager.vala',
1616
'SuperScrollAction.vala',
17+
'WindowAttentionTracker.vala',
1718
'WindowListener.vala',
1819
'WindowManager.vala',
1920
'WindowStateSaver.vala',

0 commit comments

Comments
 (0)