Skip to content

Commit bc1e532

Browse files
leolost2605lenemter
authored andcommitted
Fix invisible window title
1 parent 27da55f commit bc1e532

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Widgets/MultitaskingView/WindowClone.vala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ public class Gala.WindowClone : ActorTarget, RootTarget {
480480
);
481481
window_icon.restore_easing_state ();
482482

483-
close_button.opacity = 0;
484-
window_title.opacity = 0;
483+
close_button.visible = false;
484+
window_title.visible = false;
485485

486486
#if HAS_MUTTER48
487487
wm.get_display ().set_cursor (Meta.Cursor.MOVE);
@@ -580,6 +580,9 @@ public class Gala.WindowClone : ActorTarget, RootTarget {
580580
clone.opacity = 255;
581581
clone.restore_easing_state ();
582582

583+
close_button.visible = true;
584+
window_title.visible = true;
585+
583586
wm.get_display ().set_cursor (Meta.Cursor.DEFAULT);
584587

585588
if (duration > 0) {

0 commit comments

Comments
 (0)