Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions decred/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "decred"
version = "0.0.1"
version = "0.1.2-dev"
description = "A Python 3 Decred toolkit."
license = "ISC"
homepage = "https://decred.org/"
Expand Down Expand Up @@ -61,5 +61,5 @@ skip = [
]

[build-system]
requires = ["poetry>=1.0.3"]
requires = ["setuptools", "poetry>=1.0.3"]
build-backend = "poetry.masonry.api"
2 changes: 1 addition & 1 deletion tinywallet/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions tinywallet/tinywallet/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,13 @@ def main():
"""
Start the TinyWallet application.
"""
os.environ["QT_AUTO_SCREEN_SCALE_FACTOR"] = "1"
sys.excepthook = exception_hook
QtWidgets.QApplication.setDesktopSettingsAware(False)
roboFont = QtGui.QFont("Roboto")
roboFont.setPixelSize(16)
QtWidgets.QApplication.setFont(roboFont)
QtWidgets.QApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling)
qApp = QtWidgets.QApplication(sys.argv)
qApp.setStyleSheet(Q.QUTILITY_STYLE)
qApp.setPalette(Q.lightThemePalette)
Expand Down