Hi,
I have used your suggestion, but I have changed the step number 2 with the following code:
CODE
Theme.storage.alias('CustomTabStripButton', 'ControlTabStripButton');
Theme.storage.add('CustomTabStripButtonText', $merge(Theme.storage.get('ControlTabStripButtonText'),{
styles: {
'960x540':{
fontWeight: 'bold',
fontSize: 16,
},
'1920x1080':{
fontWeight: 'bold',
fontSize: 32,
}
}[Theme.keys.screen]
}));
and now it works correctly.
Michele