.settings
browser-plugin
data
docs
js
man
po
src
tests
interactive
testcommon
100-200.svg
200-100.svg
200-200.svg
border-image.png
face-plain.png
test.css
ui.js
unit
Makefile.am
run-test.sh.in
tools
.gitignore
.gitmodules
.project
AUTHORS
COPYING
HACKING
MAINTAINERS
Makefile.am
NEWS
README
autogen.sh
configure.ac
gnome-shell.doap

As the global object of a context is rooted, if we want the GC to act on these objects we need to take them out of the globals. https://bugzilla.gnome.org/show_bug.cgi?id=678737
24 lines
641 B
JavaScript
24 lines
641 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
const GLib = imports.gi.GLib;
|
|
const St = imports.gi.St;
|
|
|
|
const Environment = imports.ui.environment;
|
|
|
|
function init(stage) {
|
|
Environment.init();
|
|
let context = St.ThemeContext.get_for_stage(stage);
|
|
let stylesheetPath = GLib.getenv("GNOME_SHELL_TESTSDIR") + "/testcommon/test.css";
|
|
let theme = new St.Theme({ application_stylesheet: stylesheetPath });
|
|
context.set_theme(theme);
|
|
}
|
|
|
|
function main(stage) {
|
|
stage.show();
|
|
stage.connect('destroy', function() {
|
|
Clutter.main_quit();
|
|
});
|
|
Clutter.main();
|
|
}
|