pull/61/head
Christian Jacobs 2018-01-18 20:43:01 +00:00
rodzic dff0b134f3
commit 53772daf50
2 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -120,8 +120,8 @@ class GreyLine:
def pinpoint(self, r):
""" Pinpoint the location of a QSO on the grey line map based on the COUNTRY field.
:arg r: The QSO location to pinpoint.
:arg r: The QSO record containing the location to pinpoint.
"""
if(have_geocoder):

Wyświetl plik

@ -251,7 +251,7 @@ class Logbook:
""" Show a popup menu when the user right-clicks a record in the logbook. """
if(event.button == 3):
self.application.popup.menu.popup(None, None, None, None, event.button, event.time)
self.application.popup.menu.popup(None, None, None, None, event.button, event.time)
self.application.popup.menu.show_all()
return True
@ -1131,7 +1131,7 @@ class Logbook:
def get_record_index(self):
""" Return the index of the currently selected record.
:returns: The index of the currently selected record in the currently selected log. Returns None if the record or log cannot be found.
:rtype: int
"""
@ -1176,4 +1176,3 @@ class Logbook:
l.populate()
logs.append(l)
return logs