-
Notifications
You must be signed in to change notification settings - Fork 170
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
How to remove black boxes #1478
Comments
Hi @monkeycc, thanks for the issue report. Can you please provide more information about your version of Windows, the hardware you are running on, and if you are getting any errors when launching this hello world app? |
Also can you please try to set the environmental variable: $Env:GSK_RENDERER = "gl" This will use the older, but potentially more reliable GTK renderer. |
bandicam.2024-11-16.07-28-22-961.mp4CPU 12th Gen Intel(R) Core(TM) i9-12900H 2.50 GHz Installation method:
python import sys
import gi
gi.require_version("Gtk", "4.0")
from gi.repository import GLib, Gtk
class MyApplication(Gtk.Application):
def __init__(self):
super().__init__(application_id="com.example.MyGtkApplication")
GLib.set_application_name("My Gtk Application")
def do_activate(self):
window = Gtk.ApplicationWindow(application=self, title="Hello World")
window.present()
app = MyApplication()
exit_status = app.run(sys.argv)
sys.exit(exit_status) Python and Rust
Perhaps I made an installation error at which step |
Thanks for the additional info! I think you probably did everything fine, this looks like an upstream bug. What type of video / GPU are you using? |
GPU cuda 11.8 |
Nevermind, let's hold off on testing. I need to wait for GNOME's GitLab server to come back online so I can see if this patch is already part of the latest release. |
How to remove black boxes
Can this black box only exist indefinitely
The text was updated successfully, but these errors were encountered: