view extension.js @ 0:d62ba69a5f90 default tip

Initial commit with code and sizing change, plus readme
author IBBoard <dev@ibboard.co.uk>
date Sat, 23 Mar 2013 20:27:54 +0000
parents
children
line wrap: on
line source

const MessageTray = imports.ui.messageTray;

let src;

function init() {
	src = MessageTray.Source.prototype;
}

function enable() {
	src.__OLD_SOURCE_ICON_SIZE = src.SOURCE_ICON_SIZE
	src.SOURCE_ICON_SIZE = 24
}

function disable() {
	src.SOURCE_ICON_SIZE = src.__OLD_SOURCE_ICON_SIZE
}