Skip to content
Snippets Groups Projects
Verified Commit 62521853 authored by Mikolai Gütschow's avatar Mikolai Gütschow
Browse files

show Briar logo in taskbar and window header

parent 0b0e5759
Branches
Tags
1 merge request!47Show Briar logo in taskbar and window header
Pipeline #8234 passed
...@@ -5,6 +5,7 @@ import androidx.compose.runtime.getValue ...@@ -5,6 +5,7 @@ import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue import androidx.compose.runtime.setValue
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.window.Window import androidx.compose.ui.window.Window
import org.briarproject.bramble.api.account.AccountManager import org.briarproject.bramble.api.account.AccountManager
import org.briarproject.bramble.api.lifecycle.LifecycleManager import org.briarproject.bramble.api.lifecycle.LifecycleManager
...@@ -84,6 +85,7 @@ constructor( ...@@ -84,6 +85,7 @@ constructor(
Window( Window(
title = title, title = title,
onCloseRequest = onClose, onCloseRequest = onClose,
icon = painterResource("images/logo_circle.svg")
) { ) {
window.minimumSize = Dimension(800, 600) window.minimumSize = Dimension(800, 600)
BriarTheme(isDarkTheme = isDark) { BriarTheme(isDarkTheme = isDark) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment