boxpointer: Remove deprecated show/hide methods
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/576
This commit is contained in:
parent
cb4c0d32c0
commit
76dc77f617
@ -76,36 +76,6 @@ var BoxPointer = GObject.registerClass({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// BoxPointer.show() and BoxPointer.hide() are here for only compatibility
|
|
||||||
// purposes, and will be removed in 3.32.
|
|
||||||
show(animate, onComplete) {
|
|
||||||
if (animate !== undefined) {
|
|
||||||
try {
|
|
||||||
throw new Error('BoxPointer.show() has been moved to BoxPointer.open(), this code will break in the future.');
|
|
||||||
} catch(e) {
|
|
||||||
logError(e);
|
|
||||||
this.open(animate, onComplete);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.visible = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
hide(animate, onComplete) {
|
|
||||||
if (animate !== undefined) {
|
|
||||||
try {
|
|
||||||
throw new Error('BoxPointer.hide() has been moved to BoxPointer.close(), this code will break in the future.');
|
|
||||||
} catch(e) {
|
|
||||||
logError(e);
|
|
||||||
this.close(animate, onComplete);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.visible = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
open(animate, onComplete) {
|
open(animate, onComplete) {
|
||||||
let themeNode = this.get_theme_node();
|
let themeNode = this.get_theme_node();
|
||||||
let rise = themeNode.get_length('-arrow-rise');
|
let rise = themeNode.get_length('-arrow-rise');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user