From f27f030e2f5a3cf9684269a1fa803def829e755b Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Tue, 13 Feb 2024 16:53:07 +0100 Subject: [PATCH] fix: disable wgpu to fix image button rendering --- Cargo.toml | 2 +- app/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef1b032..2a7ef60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.dependencies.libcosmic] git = "https://github.com/pop-os/libcosmic" -features = ["single-instance", "tokio", "wayland", "xdg-portal", "wgpu"] +features = ["single-instance", "tokio", "wayland", "xdg-portal"] [workspace.dependencies.cosmic-config] git = "https://github.com/pop-os/libcosmic" diff --git a/app/Cargo.toml b/app/Cargo.toml index 232df05..e8baffb 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -51,6 +51,6 @@ version = "0.14.1" features = ["fluent-system", "desktop-requester"] [features] -default = ["wgpu"] +default = [] wgpu = ["libcosmic/wgpu"] test = []