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