Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
phosh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Guido Gunther
phosh
Commits
549da1af
Commit
549da1af
authored
Apr 24, 2018
by
Guido Gunther
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable background display due to layer-shell wlroots bug
See
https://github.com/swaywm/wlroots/issues/897
for details.
parent
e227a15f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/phosh.c
src/phosh.c
+5
-1
No files found.
src/phosh.c
View file @
549da1af
...
...
@@ -514,6 +514,7 @@ panel_create (PhoshShell *self)
}
#if 0 /* https://github.com/swaywm/wlroots/issues/897 */
static void
background_create (PhoshShell *self)
{
...
...
@@ -542,7 +543,7 @@ background_create (PhoshShell *self)
wl_surface_commit(background->wl_surface);
priv->background = background;
}
#endif
static
void
css_setup
(
PhoshShell
*
self
)
...
...
@@ -715,7 +716,10 @@ phosh_shell_constructed (GObject *object)
css_setup
(
self
);
panel_create
(
self
);
/* Create background after panel since it needs the panel's size */
#if 0
/* https://github.com/swaywm/wlroots/issues/897 */
background_create (self);
#endif
lockscreen_prepare
(
self
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment