diff options
author | emersion <contact@emersion.fr> | 2018-02-27 18:22:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-27 18:22:31 +0100 |
commit | 75a7340a27f7f179b13fe3fad1b8b6f5f8c41e25 (patch) | |
tree | 74cf16d5d2aa88ba80333015f11c639acd8f70e8 /rootston | |
parent | c2ba1869ce0ffd0e21238c8a4454ac29215ff7d0 (diff) | |
parent | 14bb550bff85f9f47269067821e9cab92771ef10 (diff) |
Merge pull request #689 from Ongy/fullscreen-opacity
set fullscreen alpha to 1
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/output.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rootston/output.c b/rootston/output.c index 3e954989..4d0a9c05 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -470,6 +470,7 @@ static void render_output(struct roots_output *output) { .output = output, .when = &now, .damage = &damage, + .alpha = 1.0, }; if (!needs_swap) { @@ -522,6 +523,7 @@ static void render_output(struct roots_output *output) { } // Render drag icons + data.alpha = 1.0; drag_icons_for_each_surface(server->input, render_surface, &data); renderer_end: |