浏览代码

gui.Builder minor fix

leonsal 8 年之前
父节点
当前提交
a217ed45bd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/builder.go

+ 1 - 1
gui/builder.go

@@ -161,7 +161,7 @@ const (
 	aENABLED     = 1 << iota                                             // attribute enabled for events
 	aRENDER      = 1 << iota                                             // attribute renderable
 	aVISIBLE     = 1 << iota                                             // attribute visible
-	asPANEL      = 0xFF                                                  // attribute set for panels
+	asPANEL      = 0xFFFFFFF                                             // attribute set for panels
 	asWIDGET     = aPOS | aNAME | aMARGINS | aSIZE | aENABLED | aVISIBLE // attribute set for widgets
 )