Bug 503598 - Breeze gtk theme of gtk4 application has incorrect round corners
Summary: Breeze gtk theme of gtk4 application has incorrect round corners
Status: RESOLVED DUPLICATE of bug 489562
Alias: None
Product: Breeze
Classification: Plasma
Component: gtk theme (other bugs)
Version First Reported In: 6.3.4
Platform: Arch Linux Linux
: NOR minor
Target Milestone: ---
Assignee: Plasma Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-05-01 02:50 UTC by q1253328221
Modified: 2025-05-05 05:36 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments
The screenshot (25.95 KB, image/png)
2025-05-01 02:50 UTC, q1253328221
Details

Note You need to log in before you can comment on or make changes to this bug.
Description q1253328221 2025-05-01 02:50:22 UTC
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(&gtk::Label::new(Some("hello, world")));

        vbox
    }));

    window.present();
});

app.run()
Comment 1 John Kizer 2025-05-05 05:36:19 UTC
Hi - merging this in with the existing bug report for this issue. Thanks!

*** This bug has been marked as a duplicate of bug 489562 ***