﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1087	CheckBox on TabItem, CheckBox text.	anonymous	Jpm	"Moving the mouse over a CheckBox-control thats inside a Tab-Control,
makes the text of that CheckBox looking bolder.
Environment = 3.3.1.1 under  WIN_XP/Service Pack 3 X86
(using windows theme classic)
{{{
#include <GUIConstantsEx.au3>
Opt(""GUIOnEventMode"", 1)
gui()
wait()
Func gui()
	GUICreate(""guiWindow"")
	GUISetOnEvent($GUI_EVENT_CLOSE, ""Close"")
	GUICtrlCreateTab(0, 0)
	GUICtrlCreateTabItem(""Tab1"")
	GUICtrlCreateCheckbox(""Checkbox1..."", 10, 50, 80, 20)
	GUICtrlCreateTabItem(""Tab2"")
	GUICtrlCreateTabItem("""")
	GUICtrlCreateCheckbox(""Checkbox0..."", 10, 70, 80, 20)
	GUISetState(@SW_SHOW)
EndFunc
Func Wait()
	While 1
		Sleep(500)
	WEnd
EndFunc
Func Close()
	Exit
EndFunc
}}}"	Bug	closed	3.3.1.2	AutoIt	3.3.1.1	None	Fixed	CheckBox TabItem	
