Summary: | Irreversable crash after using fullscreen window | ||
---|---|---|---|
Product: | [Plasma] plasmashell | Reporter: | Alpha-Craft <knolld00> |
Component: | general | Assignee: | David Edmundson <kde> |
Status: | RESOLVED DUPLICATE | ||
Severity: | crash | CC: | nate, plasma-bugs |
Priority: | NOR | Keywords: | drkonqi |
Version: | 5.23.4 | ||
Target Milestone: | 1.0 | ||
Platform: | Kubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Alpha-Craft
2021-12-03 14:04:52 UTC
The .py python script I ran roughly looks like this: " import pygame from pygame.locals import * pygame.init() screen = pygame.display.set_mode((500, 500), flags=FULLSCREEN) clock = pygame.time.Clock() run = True while run: for event in pygame.event.get(): if event.type == QUIT: run = False pygame.display.update() clock.tick(60) pygame.quit() " This should really not be run this on one's main machine. It might cause the same error as I have. I didn't find any solution yet. You would also need the pygame library to be installed. You should be able to install it with "pip install pygame". If it doesn't work you can read the pygame docs. *** This bug has been marked as a duplicate of bug 396359 *** |