Show More
@@ -49,8 +49,6 b' from IPython.zmq.ipkernel import (' | |||
|
49 | 49 | from IPython.zmq.session import Session, default_secure |
|
50 | 50 | from IPython.zmq.zmqshell import ZMQInteractiveShell |
|
51 | 51 | |
|
52 | import application_rc | |
|
53 | ||
|
54 | 52 | #----------------------------------------------------------------------------- |
|
55 | 53 | # Network Constants |
|
56 | 54 | #----------------------------------------------------------------------------- |
@@ -881,8 +879,10 b' class IPythonQtConsoleApp(BaseIPythonApplication):' | |||
|
881 | 879 | def init_qt_elements(self): |
|
882 | 880 | # Create the widget. |
|
883 | 881 | self.app = QtGui.QApplication([]) |
|
884 | pixmap=QtGui.QPixmap(':/icon/IPythonConsole.png') | |
|
885 | icon=QtGui.QIcon(pixmap) | |
|
882 | ||
|
883 | base_path = os.path.abspath(os.path.dirname(__file__)) | |
|
884 | icon_path = os.path.join(base_path, 'resources', 'icon', 'IPythonConsole.svg') | |
|
885 | icon = QtGui.QIcon(icon_path) | |
|
886 | 886 | QtGui.QApplication.setWindowIcon(icon) |
|
887 | 887 | |
|
888 | 888 | local_kernel = (not self.existing) or self.ip in LOCAL_IPS |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed, binary diff hidden |
|
1 | NO CONTENT: file was removed, binary diff hidden |
General Comments 0
You need to be logged in to leave comments.
Login now