MCPcopy Index your code
hub / github.com/material-shell/material-shell / hideSplashScreens

Method hideSplashScreens

src/extension.ts:267–282  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

265 }
266
267 hideSplashScreens() {
268 if (splashScreens.length < 1) return GLib.SOURCE_REMOVE;
269 splashScreens.forEach((splashscreen) => {
270 splashscreen.ease({
271 opacity: 0,
272 duration: 800,
273 mode: Clutter.AnimationMode.EASE_IN_QUAD,
274 onComplete: () => {
275 Main.layoutManager.removeChrome(splashscreen);
276 splashscreen.destroy();
277 },
278 });
279 });
280 splashScreens = [];
281 splashscreenCalled = false;
282 }
283}
284Signals.addSignalMethods(MaterialShellExtension.prototype);

Callers 2

loadMethod · 0.95
showSplashScreensMethod · 0.95

Calls 2

easeMethod · 0.80
destroyMethod · 0.65

Tested by

no test coverage detected