Fix variable name

This commit is contained in:
Muhammad Talal Anwar 2024-04-05 21:07:11 +02:00
parent 7937fcf25c
commit d593ede6d4

View File

@ -155,7 +155,7 @@ class MainWindow(Gtk.ApplicationWindow):
if ctrl_pressed and alt_pressed:
Gtk.show_uri(None, self.results_list.get_selected_row().uri, Gdk.CURRENT_TIME)
elif keyval == 116:
totp_code = totp.totp(self.resuts_list.get_selected_row().totp)
totp_code = totp.totp(self.results_list.get_selected_row().totp)
if ctrl_pressed and not alt_pressed:
set_clipboard(totp_code)
if ctrl_pressed and alt_pressed: