Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux 下拖动窗口上部边框无法正常调整大小的问题 #160

Open
XiaoYouChR opened this issue Aug 11, 2024 · 0 comments
Open
Labels
bug Something isn't working

Comments

@XiaoYouChR
Copy link

Describe the bug

Environment

  • OS:Manjaro Linux 6.9.12-1-MANJARO X11 (KDE Plasma 6.0.5)
  • DPI scaling: 100%
  • Python: 3.11.9 64-bit
  • PySide6: 6.7.2

To Reproduce
Peek 2024-08-11 14-01

Code

# Minimum code to reproduce the error
from PySide6.QtWidgets import QApplication
from qfluentwidgets.components.widgets.frameless_window import FramelessWindow


class MainWindow(FramelessWindow):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.setMinimumSize(800, 600)

if __name__ == "__main__":
    import sys
    app = QApplication(sys.argv)
    w = MainWindow()
    w.show()
    sys.exit(app.exec())

Expected behavior
窗口应该被正常地调整大小

@XiaoYouChR XiaoYouChR added the bug Something isn't working label Aug 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant