View Single Post
Old 09-04-2016, 03:22 AM   #2
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Code:
class SplashScreen(QSplashScreen):

    def __init__(self, develop=False):
        self.drawn_once = False
        self.develop = develop
        pmap = QIcon(I('library.png', allow_user_override=False)).pixmap(512, 512)
        QSplashScreen.__init__(self, pmap)
        self.setWindowTitle(__appname__)
Code:
app.setWindowIcon(QIcon(I('library.png', allow_user_override=False)))
Code:
self.system_tray_icon.setIcon(QIcon(I('lt.png', allow_user_override=False)))
Recently changed.

https://github.com/kovidgoyal/calibr...0bd04db191d4e9

Last edited by eschwartz; 09-04-2016 at 04:07 AM.
eschwartz is offline   Reply With Quote