| Summary: | Breeze gtk theme of gtk4 application has incorrect round corners | ||
|---|---|---|---|
| Product: | [Plasma] Breeze | Reporter: | q1253328221 |
| Component: | gtk theme | Assignee: | Plasma Bugs List <plasma-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | minor | CC: | agrinev98, john.kizer, nate, uhhadd |
| Priority: | NOR | ||
| Version First Reported In: | 6.3.4 | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | The screenshot | ||
Hi - merging this in with the existing bug report for this issue. Thanks! *** This bug has been marked as a duplicate of bug 489562 *** |
Created attachment 180836 [details] The screenshot The breeze theme for gtk4 application shows a wierd round cornering inside the headbar STEPS TO REPRODUCE 1. Implement a simple gtk4 app that uses system title bar OBSERVED RESULT A round corners below the system headbar, black background on the removed part SOFTWARE/OS VERSIONS Linux/KDE Plasma: Arch linux KDE Plasma Version: 6.3.4 KDE Frameworks Version: 6.13.0 Qt Version: 6.9.0 ADDITIONAL INFORMATION The rust snippet to reproduce: let app = gtk::Application::builder().application_id("IIII").build(); app.connect_activate(|app| { let window = gtk::ApplicationWindow::builder() .title("test") .application(app) .build(); window.set_child(Some(&{ let vbox = gtk::Box::new(gtk::Orientation::Vertical, 8); vbox.append(>k::Label::new(Some("hello, world"))); vbox })); window.present(); }); app.run()