mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
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:
@@ -25,9 +25,7 @@ app.connect('activate', () => {
|
||||
});
|
||||
let widget = new Clapper.Widget();
|
||||
|
||||
widget.connect('fullscreen-changed', (widget, isFullscreen) => {
|
||||
label.set_visible(!isFullscreen);
|
||||
});
|
||||
window.bind('fullscreened', label, 'visible', GObject.BindingFlags.INVERT_BOOLEAN);
|
||||
window.connect('show', () => {
|
||||
let media = 'http://distribution.bbb3d.renderfarming.net/video/mp4/bbb_sunflower_1080p_30fps_normal.mp4';
|
||||
widget.player.set_media(media);
|
||||
|
Reference in New Issue
Block a user