Browse Source

Just kill the 'statusbar' config options.

"Always on" is never useful and doesn't work how anyone would expect.
Should permanently fix #15.
pull/3202/head
TheGoddessInari 7 years ago
parent
commit
0ef996bb2b
  1. 2
      app/model/Service.js
  2. 8
      app/view/add/Add.js
  3. 2
      app/view/add/AddController.js

2
app/model/Service.js

@ -44,7 +44,7 @@ Ext.define('Rambox.model.Service', {
},{
name: 'statusbar'
,type: 'boolean'
,defaultValue: true
,defaultValue: false
},{
name: 'displayTabUnreadCounter'
,type: 'boolean'

8
app/view/add/Add.js

@ -178,14 +178,6 @@ Ext.define('Rambox.view.add.Add',{
,uncheckedValue: false
,inputValue: true
}
,{
xtype: 'checkbox'
,boxLabel: 'Always display Status Bar'
,name: 'statusbar'
,checked: me.edit ? me.record.get('statusbar') : false
,uncheckedValue: false
,inputValue: true
}
,{
xtype: 'checkbox'
,boxLabel: locale['app.window[19]']

2
app/view/add/AddController.js

@ -34,7 +34,6 @@ Ext.define('Rambox.view.add.AddController', {
,align: formValues.align
,notifications: formValues.notifications
,muted: formValues.muted
,statusbar: formValues.statusbar
,tabname: formValues.tabname
,displayTabUnreadCounter: formValues.displayTabUnreadCounter
,includeInGlobalUnreadCounter: formValues.includeInGlobalUnreadCounter
@ -92,7 +91,6 @@ Ext.define('Rambox.view.add.AddController', {
,notifications: formValues.notifications
,muted: formValues.muted
,tabname: formValues.tabname
,statusbar: formValues.statusbar
,displayTabUnreadCounter: formValues.displayTabUnreadCounter
,includeInGlobalUnreadCounter: formValues.includeInGlobalUnreadCounter
,trust: formValues.trust

Loading…
Cancel
Save