diff --git a/source/Ox.UI/js/Menu/MenuButton.js b/source/Ox.UI/js/Menu/MenuButton.js index 1cd3111d..f2ce0a2e 100644 --- a/source/Ox.UI/js/Menu/MenuButton.js +++ b/source/Ox.UI/js/Menu/MenuButton.js @@ -33,6 +33,7 @@ Ox.MenuButton = function(options, self) { id: '', items: [], maxWidth: 0, + overlap: 'none', style: 'rounded', title: '', type: 'text', @@ -72,6 +73,7 @@ Ox.MenuButton = function(options, self) { self.$button = Ox.Button({ id: self.options.id + 'Button', + overlap: self.options.overlap, style: 'symbol', title: self.options.type == 'text' || !self.options.title ? 'select' : self.options.title,