@@ -97,6 +97,26 @@ app.component('Settings', {
9797 description : s . actionAreaDesc ,
9898 data : { type : 'number' , min : 0 , value : await storage . getSettings ( this . $const . Settings . ACTION_AREA ) , unit : 'px' }
9999 } ,
100+ {
101+ id : this . $const . Settings . USE_EXTERNAL_BROWSER ,
102+ label : s . useExternalBrowser ,
103+ description : s . useExternalBrowserDesc ,
104+ data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . USE_EXTERNAL_BROWSER ) }
105+ } ,
106+ {
107+ id : this . $const . Settings . GROUP_PAGES_BY_SESSION ,
108+ label : s . groupPagesBySession ,
109+ description : s . groupPagesBySessionDesc ,
110+ data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . GROUP_PAGES_BY_SESSION ) }
111+ } ,
112+ {
113+ id : this . $const . Settings . ALLOW_FULLSCREEN ,
114+ label : s . allowFullscreen ,
115+ description : s . allowFullscreenDesc ,
116+ data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . ALLOW_FULLSCREEN ) }
117+ }
118+ ] ,
119+ [ s . appearance ] : [
100120 {
101121 id : this . $const . Settings . APP_THEME ,
102122 label : s . appTheme ,
@@ -126,26 +146,6 @@ app.component('Settings', {
126146 ]
127147 }
128148 } ,
129- {
130- id : this . $const . Settings . USE_EXTERNAL_BROWSER ,
131- label : s . useExternalBrowser ,
132- description : s . useExternalBrowserDesc ,
133- data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . USE_EXTERNAL_BROWSER ) }
134- } ,
135- {
136- id : this . $const . Settings . GROUP_PAGES_BY_SESSION ,
137- label : s . groupPagesBySession ,
138- description : s . groupPagesBySessionDesc ,
139- data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . GROUP_PAGES_BY_SESSION ) }
140- } ,
141- {
142- id : this . $const . Settings . ALLOW_FULLSCREEN ,
143- label : s . allowFullscreen ,
144- description : s . allowFullscreenDesc ,
145- data : { type : 'bool' , value : await storage . getSettings ( this . $const . Settings . ALLOW_FULLSCREEN ) }
146- }
147- ] ,
148- [ s . appearance ] : [
149149 {
150150 id : this . $const . Settings . SHOW_FRAME ,
151151 label : s . showFrame ,
0 commit comments