Skip to content

Commit

Permalink
Merge pull request #36 from dhiltonp/master
Browse files Browse the repository at this point in the history
reduce gnome-shell warnings
  • Loading branch information
rodakorn authored Sep 21, 2018
2 parents 700ac05 + 097c5a9 commit 4da24f0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Random_Walls@Antares/assets/pictureChooser.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ const CURRENT_LOCK = 1;
const NEXT_DESK = 2;
const NEXT_LOCK = 3;

const THUMB_WIDTH = 200; //Change on stylesheet.css too!!
var THUMB_WIDTH = 200; //Change on stylesheet.css too!!
const NUM_COLS_TABLE = 4;

let _settings=Convenience.getSettings();

const ThumbIcon = new Lang.Class({
var ThumbIcon = new Lang.Class({
Name: 'ThumbIcon',
actor: {},
_icon: {},
Expand Down
2 changes: 1 addition & 1 deletion Random_Walls@Antares/assets/timeout.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Convenience = Me.imports.convenience;
//SCHEMA KEYS
const SETTINGS_TIMEOUT = "change-time";

const MyTimer = new Lang.Class({
var MyTimer = new Lang.Class({
Name: "MyTimer",

_settings: {},
Expand Down
4 changes: 2 additions & 2 deletions Random_Walls@Antares/assets/wallpapers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const SETTINGS_LOCK_URI = 'picture-uri';
const SETTINGS_FOLDER_LIST = 'folder-list';
const SETTINGS_BACKGROUND_MODE = 'picture-options';

const WallUtils = new Lang.Class({
var WallUtils = new Lang.Class({
Name: 'WallUtils',

_settings: null,
Expand Down Expand Up @@ -248,7 +248,7 @@ const WallUtils = new Lang.Class({

});

const getScreenAspectRatio = function() {
var getScreenAspectRatio = function() {
let background_setting = new Gio.Settings({schema: 'org.gnome.desktop.background'});
let background_mode = background_setting.get_string(SETTINGS_BACKGROUND_MODE);
if (background_mode == 'spanned') {
Expand Down
2 changes: 1 addition & 1 deletion Random_Walls@Antares/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const NEXT_LOCK = 3;

let metadata = Me.metadata;
let settings;
let MyTimer;
var MyTimer;
let wallUtils;

const LabelWidget = new Lang.Class({
Expand Down
2 changes: 1 addition & 1 deletion Random_Walls@Antares/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"shell-version": ["3.14","3.16","3.18","3.20","3.22"],
"shell-version": ["3.14","3.16","3.18","3.20","3.22", "3.30"],
"uuid": "Random_Walls@Antares",
"url": "https://github.com/rodakorn/randwall",
"settings-schema": "org.gnome.shell.extensions.randwall",
Expand Down

0 comments on commit 4da24f0

Please sign in to comment.