Prevent exception when clicking on the Connect button when no host is selected
This commit is contained in:
parent
12dded627e
commit
62b0d0b094
|
@ -380,6 +380,8 @@ class ConnectionManager(component.Component):
|
|||
|
||||
def on_button_connect_clicked(self, widget=None):
|
||||
model, row = self.hostlist.get_selection().get_selected()
|
||||
if not row:
|
||||
return
|
||||
status = model[row][HOSTLIST_COL_STATUS]
|
||||
if status == "Connected":
|
||||
def on_disconnect(reason):
|
||||
|
|
Loading…
Reference in New Issue