Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change dialog title and button text
Browse files Browse the repository at this point in the history
Heitor Carvalho committed Jan 3, 2024
1 parent 8c4d221 commit 3d62e96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ankihub/gui/menu.py
Original file line number Diff line number Diff line change
@@ -118,8 +118,8 @@ def __init__(self):
self.password_box.addWidget(self.toggle_button)
self.box_left.addLayout(self.password_box)

# Login
self.login_button = QPushButton("Login", self)
# Sign in button
self.login_button = QPushButton("Sign in", self)
self.bottom_box_section.addWidget(self.login_button)
qconnect(self.login_button.clicked, self.login)
self.login_button.setDefault(True)
@@ -138,7 +138,7 @@ def __init__(self):

self.setMinimumWidth(500)
self.setSizePolicy(QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
self.setWindowTitle("Login to AnkiHub.")
self.setWindowTitle("Sign in to AnkiHub.")
self.setWindowFlags(self.windowFlags() | Qt.WindowType.WindowStaysOnTopHint) # type: ignore
self.show()

0 comments on commit 3d62e96

Please sign in to comment.