Sat, 30 Aug 2025 16:39:37 +0200
fix gtk3 build, implement workaround for gtk_button_set_can_shrink
// Copyright (c) Microsoft Corporation and Contributors. // Licensed under the MIT License. #pragma once #include "App.xaml.g.h" namespace winrt::winui::implementation { struct App : AppT<App> { App(); void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&); private: winrt::Microsoft::UI::Xaml::Window window{ nullptr }; }; }