Skip to content

Commit b4b02fd

Browse files
authored
Merge branch 'main' into lenemter/release-8-2-3
2 parents 107f400 + 0c0447b commit b4b02fd

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

data/gala.metainfo.xml.in

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,21 @@
3535
</ul>
3636
</description>
3737
<issues>
38+
<issue url="https://github.com/elementary/dock/issues/68">Cannot move window to display below dock.</issue>
39+
<issue url="https://github.com/elementary/dock/issues/425">Improper dock behaviour when it hides on vertically stacked monitors</issue>
40+
<issue url="https://github.com/elementary/gala/issues/76">PIP: Grabbing an area too close to a Gtk3 window only grabs it's shadow</issue>
41+
<issue url="https://github.com/elementary/gala/issues/132">Closing last window in the window overview doesn't close it</issue>
42+
<issue url="https://github.com/elementary/gala/issues/340">"Move to left workspace" is a no-op on left-most workspace</issue>
43+
<issue url="https://github.com/elementary/gala/issues/2060">Gala.ShadowEffect has performance issues</issue>
44+
<issue url="https://github.com/elementary/gala/issues/2424">Mouse pointer often stuck between displays when external display is the primary display and is arranged above built-in display</issue>
45+
<issue url="https://github.com/elementary/gala/issues/2230">Multitasking view background clipped when using multiple monitors above each other</issue>
46+
<issue url="https://github.com/elementary/gala/issues/2263">Prevent windows from breaking workflow</issue>
3847
<issue url="https://github.com/elementary/gala/issues/2400">Switching workspaces makes the windows move down with multiple monitors</issue>
48+
<issue url="https://github.com/elementary/gala/issues/2401">Context menus appear at the top left corner of the secondary monitor</issue>
49+
<issue url="https://github.com/elementary/gala/issues/2409">Windows sometimes get stuck in an un-interactive state after using gestures to switch workspaces</issue>
50+
<issue url="https://github.com/elementary/gala/issues/2410">Window position not restored correctly when going back from fullscreen</issue>
51+
<issue url="https://github.com/elementary/gala/issues/2414">During workspace switch, windows on secondary display aren't shown</issue>
52+
<issue url="https://github.com/elementary/gala/issues/2415">Wrong animation origin for windows on display 2 on workspace overview</issue>
3953
</issues>
4054
</release>
4155

src/ScreenshotManager.vala

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,24 @@ public class Gala.ScreenshotManager : Object {
162162
var files_appinfo = AppInfo.get_default_for_type ("inode/directory", true);
163163
var photos_appinfo = AppInfo.get_default_for_type ("image/png", true);
164164

165+
var open_in_photos_action = GLib.Action.print_detailed_name (
166+
"open-in-photos",
167+
new Variant ("s", filename_used)
168+
);
169+
170+
/// TRANSLATORS: %s represents a name of image viewer
171+
var open_in_photos_label = _("Open in %s").printf (photos_appinfo.get_display_name ());
172+
165173
actions = {
166174
GLib.Action.print_detailed_name (
167175
"show-in-files",
168176
new Variant ("s", filename_used)),
169177
/// TRANSLATORS: %s represents a name of file manager
170178
_("Show in %s").printf (files_appinfo.get_display_name ()
171179
),
172-
GLib.Action.print_detailed_name (
173-
"open-in-photos",
174-
new Variant ("s", filename_used)),
175-
/// TRANSLATORS: %s represents a name of image viewer
176-
_("Open in %s").printf (photos_appinfo.get_display_name ()
177-
)
180+
// TODO: uncomment when https://github.com/elementary/notifications/issues/237 is fixed
181+
// open_in_photo_action
182+
// open_in_photos_label
178183
};
179184
}
180185

0 commit comments

Comments
 (0)