diff options
author | 2022-05-26 20:52:17 +0100 | |
---|---|---|
committer | 2022-05-26 20:52:17 +0100 | |
commit | 50d781d0bdcac217f2bc037abe087a00019edba5 (patch) | |
tree | 585b74bf268f80da795c95c29910dcbecd0fa2a6 /configs/appList.js | |
parent | 3bbc6402f8b43f14aa7974a9b3ef9a7ed67f27d9 (diff) | |
download | my_apps-50d781d0bdcac217f2bc037abe087a00019edba5.tar.gz my_apps-50d781d0bdcac217f2bc037abe087a00019edba5.tar.bz2 my_apps-50d781d0bdcac217f2bc037abe087a00019edba5.zip |
make settings app closeable
Diffstat (limited to 'configs/appList.js')
-rw-r--r-- | configs/appList.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/appList.js b/configs/appList.js index 7bfec3e..13ca6d6 100644 --- a/configs/appList.js +++ b/configs/appList.js @@ -4,7 +4,7 @@ const appList = { Calculator: { component: Calculator, icon: true, buttons: ['min', 'close'], height: '30em', width: '20em' }, Notes: { component: Notes, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, Player: { component: Player, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, - Settings: { component: Settings, icon: false, buttons: ['min'], height: '23em', width: '16em' }, + Settings: { component: Settings, icon: false, buttons: ['min', 'close'], height: '23em', width: '16em' }, Youtube: { component: Youtube, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' } } |