Page 1 of 1

[svn] Addons dialog invisible list

Posted: Tue Sep 25, 2012 12:53 am
by aardvark
The list of addons in the Addons dialog is invisible until you do something to update the list. In the case of an install without extra modules (i.e., only "tome") the only way to do this is clicking the "Show incompatible" check box. Commenting out a single line fixes it:

Code: Select all

--- game/engines/default/modules/boot/dialogs/Addons.lua.old	2012-09-24 16:29:55.312500000 -0700
+++ game/engines/default/modules/boot/dialogs/Addons.lua	2012-09-24 16:29:59.671875000 -0700
@@ -61,7 +61,7 @@
 	self:setFocus(self.c_list)
 	self:setupUI()
 
-	self:select(self.list[1])
+--	self:select(self.list[1])
 
 	self.key:addBinds{
 		EXIT = function() game:unregisterDialog(self) end,