Remove fullscreen-changed signal

GTK since 4.0 has fullscreened property that can be used as both a binding and signal with notify. No need to keep the fullscreen-changed signal as part of the app.
This commit is contained in:
Rafostar
2021-01-05 20:47:57 +01:00
parent 3452990c28
commit a9d4555661
2 changed files with 3 additions and 11 deletions

View File

@@ -8,13 +8,8 @@ const Revealers = imports.clapper_src.revealers;
const { debug } = Debug;
const { settings } = Misc;
var Widget = GObject.registerClass({
Signals: {
'fullscreen-changed': {
param_types: [GObject.TYPE_BOOLEAN]
}
}
}, class ClapperWidget extends Gtk.Grid
var Widget = GObject.registerClass(
class ClapperWidget extends Gtk.Grid
{
_init()
{
@@ -484,7 +479,6 @@ var Widget = GObject.registerClass({
return;
this.setFullscreenMode(isFullscreen);
this.emit('fullscreen-changed', isFullscreen);
debug(`interface in fullscreen mode: ${isFullscreen}`);
}