Connect to Server was stupid naming

This commit is contained in:
Sumner Evans
2019-08-08 21:51:18 -06:00
parent 653268ebf5
commit df1a0c2aca
2 changed files with 4 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ class ConfigureServersDialog(Gtk.Dialog):
def __init__(self, parent, config):
Gtk.Dialog.__init__(
self,
title='Connect to Server',
title='Conigure Servers',
transient_for=parent,
flags=0,
add_buttons=(),

View File

@@ -12,8 +12,8 @@ from libremsonic.state_manager import ApplicationState
class MainWindow(Gtk.ApplicationWindow):
"""Defines the main window for LibremSonic."""
__gsignals__ = {
'song-clicked': (GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE,
(str, object)),
'song-clicked':
(GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE, (str, object)),
}
def __init__(self, *args, **kwargs):
@@ -107,7 +107,7 @@ class MainWindow(Gtk.ApplicationWindow):
menu_items = [
(None, self.connected_to_label),
('app.configure-servers',
Gtk.ModelButton(text='Connect to Server')),
Gtk.ModelButton(text='Configure Servers')),
]
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)