Added start to documentation

This commit is contained in:
Sumner Evans
2020-01-20 21:26:07 -07:00
parent 842609c0ff
commit 05893cc9da
18 changed files with 553 additions and 122 deletions

View File

@@ -135,12 +135,12 @@ class SublimeMusicApp(Gtk.Application):
self.window.connect('songs-removed', self.on_songs_removed)
self.window.connect('refresh-window', self.on_refresh_window)
self.window.connect('go-to', self.on_window_go_to)
self.window.connect('key-press-event', self.on_window_key_press)
self.window.player_controls.connect('song-scrub', self.on_song_scrub)
self.window.player_controls.connect(
'device-update', self.on_device_update)
self.window.player_controls.connect(
'volume-change', self.on_volume_change)
self.window.connect('key-press-event', self.on_window_key_press)
self.window.show_all()
self.window.present()