tws0002 / blur-dev

Automatically exported from code.google.com/p/blur-dev
0 stars 0 forks source link

Dialog never displays a background image specified by CSS #67

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

What steps will reproduce the problem?
1.Take this piece of code as example, the code is provided by 
[code]
from blurdev.gui import Dialog

class HelloWorldDialog(Dialog):
    def __init__( self, parent = None ):
        Dialog.__init__( self, parent )
        self.setStyleSheet("background-image: url(logo.png);")
        self.setWindowTitle('Hello, World')

import blurdev
blurdev.launch(HelloWorldDialog)
[/code]
2. Launch it from 3dMax

What is the expected output? 
-The window should contain the background image
What do you see instead?
The empty windows without it(the background image)

What version of the product are you using? On what operating system?
BlurOffline_2012-06-11_install_12119
3Ds Max 2011 32 bits
Microsoft Windows 8

Please provide any additional information below.

Original issue reported on code.google.com by adrianrp...@gmail.com on 26 Mar 2013 at 6:26