Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f172ed84 authored by Alex Sakhartchouk's avatar Alex Sakhartchouk
Browse files

Temporarily disable vr_wm visibility while we figure out what triggers it

to come up at all time. This is to quickly unblock everyone.

Bug: 36036583
Test: Compiled
Change-Id: Ibf045e7354ee96b7609af1c47b1e64b63659feb9
parent 9257845a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -294,6 +294,9 @@ void Application::SetVisibility(bool visible) {
  bool changed = is_visible_ != visible;
  if (changed) {
    is_visible_ = visible;
    // TODO (alexst): b/36036583 Disable vr_wm visibility until we figure out
    // why it's always on top. Still make it visible in debug mode.
    if (debug_mode_)
      dvrGraphicsSurfaceSetVisible(graphics_context_, is_visible_);
    OnVisibilityChanged(is_visible_);
  }