Settings menu now warns when a setting is unsaved. (#65)

* Settings menu now warns when a setting is unsaved. Additionally, font-weight increments properly now.

* Remove font weight fix - another PR already open for fix.
This commit is contained in:
Jas Singh
2024-08-02 20:00:28 -07:00
committed by GitHub
parent 1f7c5a70ca
commit 6166fdbe0f
18 changed files with 110 additions and 34 deletions

View File

@@ -6,7 +6,7 @@ import options from "options";
export const BatteryMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page battery paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const BluetoothMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page bluetooth paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const ClockMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page clock paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const DashboardMenuTheme = () => {
return Widget.Scrollable({
vscroll: "always",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page dashboard paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const MenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const MediaMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page media paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const NetworkMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page network paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const NotificationsMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page notifications paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const SystrayMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page systray paged-container",
vexpand: true,
child: Widget.Box({

View File

@@ -6,7 +6,7 @@ import options from "options";
export const VolumeMenuTheme = () => {
return Widget.Scrollable({
vscroll: "automatic",
hscroll: "never",
hscroll: "automatic",
class_name: "menu-theme-page volume paged-container",
vexpand: true,
child: Widget.Box({