feat: add option to toggle window transparent

This commit is contained in:
reya
2024-07-02 08:49:52 +07:00
parent d9fe647f8e
commit ed4f89ff66
30 changed files with 112 additions and 166 deletions

View File

@@ -43,6 +43,7 @@ pub struct Settings {
display_zap_button: bool,
display_repost_button: bool,
display_media: bool,
vibrancy: bool,
}
impl Default for Settings {
@@ -56,6 +57,7 @@ impl Default for Settings {
display_zap_button: true,
display_repost_button: true,
display_media: true,
vibrancy: true,
}
}
}