View Single Post
  #6  
Unread 03-05-2012, 11:49 AM
Mirendir Mirendir is offline
The Wary
Interface Author - Click to view interfaces
 
Join Date: Jan 2012
Posts: 1
Quote:
Originally Posted by Garan
The wallet changes are working nicely and the GetAttributes bug has been fixed.

Unfortunately, the new Turbine.PluginManager:ShowOptions() is crashing the client. Hopefully they will get that worked out before it goes live.
yes hope they fix this, coz this would be nice feature.
btw. any of you know how to change size of the "parent" optionpanel window?
i use this code to set size of my panel, but may there is any way to
set size of the whole /plugins manager window to fit the panel?

Code:
	if (optpanel == false) then
		optionsPanel = Turbine.UI.Control();
		optionsPanel:SetBackColor( Turbine.UI.Color( 0.8, 0.00, 0.00, 0.00 ) );
		optionsPanel:SetSize( 280, 500 );
		optpanel = true;
		
		plugin.GetOptionsPanel = function( self )
		  return optionsPanel;
		end
Reply With Quote