From 045f8859f742c981b5d3208accb997c79f241e4c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 5 Aug 2014 19:01:56 -0400 Subject: [PATCH] Removed leftover TODO. --- redo/tab_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/tab_windows.go b/redo/tab_windows.go index 4eb960d..8c75f64 100644 --- a/redo/tab_windows.go +++ b/redo/tab_windows.go @@ -12,7 +12,7 @@ import "C" /* On Windows, container controls are just regular controls; their children have to be children of the parent window, and changing the contents of a switching container (such as a tab control) must be done manually. -We'll create a dummy window using the pre-existing Window window class for each tab page. This makes showing and hiding tabs a matter of showing and hiding one control, at the cost of having to do C.moveWindow() in tab.commitResize()... (TODO) +We'll create a dummy window using the pre-existing Window window class for each tab page. This makes showing and hiding tabs a matter of showing and hiding one control. TODO - make sure all tabs cannot be deselected (that is, make sure the current tab can never have index -1)