tab bar was wrongly shrunken for fullscreen window on the starutp

This commit is contained in:
SHIMODA Hiroshi 2011-12-14 15:33:25 +09:00
parent e6f29af997
commit 737320ef7d

View File

@ -207,10 +207,12 @@ TreeStyleTabWindow.prototype = {
get maximized() get maximized()
{ {
var sizemode = this.document.documentElement.getAttribute('sizemode');
return ( return (
this.window.fullScreen || this.window.fullScreen ||
this.window.windowState == this.window.STATE_MAXIMIZED || this.window.windowState == this.window.STATE_MAXIMIZED ||
this.document.documentElement.getAttribute('sizemode') == 'maximized' sizemode == 'maximized' ||
sizemode == 'fullscreen'
); );
}, },