mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Allow setting splash theme to 'none'.
If 'none' was set, no splash theme will be used. This is another way splash screen can be disabled without adding '-n' option to evoke.
This commit is contained in:
parent
09b1d6fe74
commit
29475da925
@ -94,7 +94,7 @@ void Splash::show(void) {
|
|||||||
void Splash::run(void) {
|
void Splash::run(void) {
|
||||||
E_ASSERT(slist != NULL);
|
E_ASSERT(slist != NULL);
|
||||||
|
|
||||||
if(!show_splash) {
|
if(!show_splash || (splash_theme && (strcasecmp(splash_theme->c_str(), "none") == 0))) {
|
||||||
while(next_client_nosplash())
|
while(next_client_nosplash())
|
||||||
;
|
;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user