[svn] Addons dialog invisible list

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
aardvark
Wyrmic
Posts: 200
Joined: Wed Aug 22, 2012 12:16 am

[svn] Addons dialog invisible list

#1 Post 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,

Post Reply