Jump to content

D4NTE

Inactive Member
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by D4NTE

  1. 2 godziny temu, jeddawee napisał:

    I think it is better to make the item render target appear when pressing "alt + right click or left click or what ever" to the item

     

    Anyway thank you for sharing 

     

    To make such a thing the best solution is to set your main board on self.Hide()

    After 

    		In class ToolTip after :
    
    		parentWindow = self.GetParentProxy()
    		if parentWindow:
    			(gx, gy) = parentWindow.GetGlobalPosition()
    			x -= gx
    			y -= gy
    
    		self.SetPosition(x, y)
            
            Add:
              
    		try:
    			if app.IsPressed(app.DIK_LCONTROL):
    				if not self.vRenderTargetMain.IsShow():
    					self.vRenderTargetMain.Show()
    			else:
    				if self.vRenderTargetMain.IsShow():
    					self.vRenderTargetMain.Hide()
    		except:pass

     

    Good idea about public :)

     

    image.png.8038c75a8adcfaf0180b62fa880f80d8.png

     

     

    • Love 1
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.