reduce minimum width
This commit is contained in:
parent
d1e42e5379
commit
09d9ae364f
@ -202,7 +202,7 @@ def show(mw: aqt.AnkiQt) -> QDialog:
|
|||||||
)
|
)
|
||||||
abouttext += f"<p>{tr.about_if_you_have_contributed_and_are()}"
|
abouttext += f"<p>{tr.about_if_you_have_contributed_and_are()}"
|
||||||
abouttext += f"<p>{tr.about_a_big_thanks_to_all_the()}"
|
abouttext += f"<p>{tr.about_a_big_thanks_to_all_the()}"
|
||||||
abt.label.setMinimumWidth(800)
|
abt.label.setMinimumWidth(400)
|
||||||
abt.label.setMinimumHeight(600)
|
abt.label.setMinimumHeight(600)
|
||||||
dialog.show()
|
dialog.show()
|
||||||
abt.label.stdHtml(abouttext, js=[])
|
abt.label.stdHtml(abouttext, js=[])
|
||||||
|
@ -46,7 +46,7 @@ class AddCards(QMainWindow):
|
|||||||
self.form = form
|
self.form = form
|
||||||
self.setWindowTitle(tr.actions_add())
|
self.setWindowTitle(tr.actions_add())
|
||||||
self.setMinimumHeight(300)
|
self.setMinimumHeight(300)
|
||||||
self.setMinimumWidth(400)
|
self.setMinimumWidth(200)
|
||||||
self.setup_choosers()
|
self.setup_choosers()
|
||||||
self.setupEditor()
|
self.setupEditor()
|
||||||
add_close_shortcut(self)
|
add_close_shortcut(self)
|
||||||
|
@ -821,7 +821,7 @@ class CardLayout(QDialog):
|
|||||||
d = QDialog(self)
|
d = QDialog(self)
|
||||||
d.setWindowTitle("Anki")
|
d.setWindowTitle("Anki")
|
||||||
disable_help_button(d)
|
disable_help_button(d)
|
||||||
d.setMinimumWidth(400)
|
d.setMinimumWidth(200)
|
||||||
l = QVBoxLayout()
|
l = QVBoxLayout()
|
||||||
lab = QLabel(
|
lab = QLabel(
|
||||||
tr.card_templates_enter_deck_to_place_new(val="%s")
|
tr.card_templates_enter_deck_to_place_new(val="%s")
|
||||||
|
@ -42,7 +42,7 @@ class DeckDescriptionDialog(QDialog):
|
|||||||
self.setWindowTitle(tr.scheduling_description())
|
self.setWindowTitle(tr.scheduling_description())
|
||||||
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
||||||
self.mw.garbage_collect_on_dialog_finish(self)
|
self.mw.garbage_collect_on_dialog_finish(self)
|
||||||
self.setMinimumWidth(400)
|
self.setMinimumWidth(200)
|
||||||
disable_help_button(self)
|
disable_help_button(self)
|
||||||
restoreGeom(self, self.TITLE)
|
restoreGeom(self, self.TITLE)
|
||||||
addCloseShortcut(self)
|
addCloseShortcut(self)
|
||||||
|
@ -37,7 +37,7 @@ class DeckOptionsDialog(QDialog):
|
|||||||
def _setup_ui(self) -> None:
|
def _setup_ui(self) -> None:
|
||||||
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
||||||
self.mw.garbage_collect_on_dialog_finish(self)
|
self.mw.garbage_collect_on_dialog_finish(self)
|
||||||
self.setMinimumWidth(400)
|
self.setMinimumWidth(200)
|
||||||
disable_help_button(self)
|
disable_help_button(self)
|
||||||
restoreGeom(self, self.TITLE, default_size=(800, 800))
|
restoreGeom(self, self.TITLE, default_size=(800, 800))
|
||||||
addCloseShortcut(self)
|
addCloseShortcut(self)
|
||||||
|
@ -18,7 +18,7 @@ class EditCurrent(QMainWindow):
|
|||||||
self.form.setupUi(self)
|
self.form.setupUi(self)
|
||||||
self.setWindowTitle(tr.editing_edit_current())
|
self.setWindowTitle(tr.editing_edit_current())
|
||||||
self.setMinimumHeight(400)
|
self.setMinimumHeight(400)
|
||||||
self.setMinimumWidth(250)
|
self.setMinimumWidth(125)
|
||||||
self.editor = aqt.editor.Editor(
|
self.editor = aqt.editor.Editor(
|
||||||
self.mw,
|
self.mw,
|
||||||
self.form.fieldsArea,
|
self.form.fieldsArea,
|
||||||
|
@ -157,7 +157,7 @@ class MediaChecker:
|
|||||||
|
|
||||||
qconnect(box.rejected, diag.reject)
|
qconnect(box.rejected, diag.reject)
|
||||||
diag.setMinimumHeight(400)
|
diag.setMinimumHeight(400)
|
||||||
diag.setMinimumWidth(500)
|
diag.setMinimumWidth(250)
|
||||||
restoreGeom(diag, "checkmediadb", default_size=(800, 800))
|
restoreGeom(diag, "checkmediadb", default_size=(800, 800))
|
||||||
diag.exec()
|
diag.exec()
|
||||||
saveGeom(diag, "checkmediadb")
|
saveGeom(diag, "checkmediadb")
|
||||||
|
@ -154,7 +154,7 @@ class ProgressManager:
|
|||||||
self._win.form.label.setText(label)
|
self._win.form.label.setText(label)
|
||||||
self._win.setWindowTitle("Anki")
|
self._win.setWindowTitle("Anki")
|
||||||
self._win.setWindowModality(Qt.WindowModality.ApplicationModal)
|
self._win.setWindowModality(Qt.WindowModality.ApplicationModal)
|
||||||
self._win.setMinimumWidth(300)
|
self._win.setMinimumWidth(150)
|
||||||
self._busy_cursor_timer = QTimer(self.mw)
|
self._busy_cursor_timer = QTimer(self.mw)
|
||||||
self._busy_cursor_timer.setSingleShot(True)
|
self._busy_cursor_timer.setSingleShot(True)
|
||||||
self._busy_cursor_timer.start(300)
|
self._busy_cursor_timer.start(300)
|
||||||
|
@ -38,7 +38,7 @@ class NewDeckStats(QDialog):
|
|||||||
self.form = aqt.forms.stats.Ui_Dialog()
|
self.form = aqt.forms.stats.Ui_Dialog()
|
||||||
self.oldPos = None
|
self.oldPos = None
|
||||||
self.wholeCollection = False
|
self.wholeCollection = False
|
||||||
self.setMinimumWidth(700)
|
self.setMinimumWidth(350)
|
||||||
disable_help_button(self)
|
disable_help_button(self)
|
||||||
f = self.form
|
f = self.form
|
||||||
f.setupUi(self)
|
f.setupUi(self)
|
||||||
@ -149,7 +149,7 @@ class DeckStats(QDialog):
|
|||||||
self.form = aqt.forms.stats.Ui_Dialog()
|
self.form = aqt.forms.stats.Ui_Dialog()
|
||||||
self.oldPos = None
|
self.oldPos = None
|
||||||
self.wholeCollection = False
|
self.wholeCollection = False
|
||||||
self.setMinimumWidth(700)
|
self.setMinimumWidth(350)
|
||||||
disable_help_button(self)
|
disable_help_button(self)
|
||||||
f = self.form
|
f = self.form
|
||||||
if theme_manager.night_mode and not theme_manager.macos_dark_mode():
|
if theme_manager.night_mode and not theme_manager.macos_dark_mode():
|
||||||
|
@ -328,7 +328,7 @@ def showText(
|
|||||||
type: str = "text",
|
type: str = "text",
|
||||||
run: bool = True,
|
run: bool = True,
|
||||||
geomKey: str | None = None,
|
geomKey: str | None = None,
|
||||||
minWidth: int = 500,
|
minWidth: int = 250,
|
||||||
minHeight: int = 400,
|
minHeight: int = 400,
|
||||||
title: str = "Anki",
|
title: str = "Anki",
|
||||||
copyBtn: bool = False,
|
copyBtn: bool = False,
|
||||||
@ -476,7 +476,7 @@ class GetTextDialog(QDialog):
|
|||||||
edit: QLineEdit | None = None,
|
edit: QLineEdit | None = None,
|
||||||
default: str = "",
|
default: str = "",
|
||||||
title: str = "Anki",
|
title: str = "Anki",
|
||||||
minWidth: int = 400,
|
minWidth: int = 200,
|
||||||
) -> None:
|
) -> None:
|
||||||
QDialog.__init__(self, parent)
|
QDialog.__init__(self, parent)
|
||||||
self.setWindowTitle(title)
|
self.setWindowTitle(title)
|
||||||
|
Loading…
Reference in New Issue
Block a user