diff options
author | fahim | 2015-07-29 16:05:35 +0530 |
---|---|---|
committer | fahim | 2015-07-29 16:05:35 +0530 |
commit | 81543e3a4c4e3a845507ee38308f52a8198204c3 (patch) | |
tree | f0d1ed00cceeb02f010f4c49163e7a9ae97df0a9 /src/frontEnd/Application.py | |
parent | 7cdabba6ca27643fc290c6fada8c8fa333e7f8fb (diff) | |
download | eSim-81543e3a4c4e3a845507ee38308f52a8198204c3.tar.gz eSim-81543e3a4c4e3a845507ee38308f52a8198204c3.tar.bz2 eSim-81543e3a4c4e3a845507ee38308f52a8198204c3.zip |
Subject: Set Welcome and Note area ReadOnly
Description: Set Welcome and Note area ReadOnly
Diffstat (limited to 'src/frontEnd/Application.py')
-rwxr-xr-x | src/frontEnd/Application.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index 7ee98aa8..7f105cfe 100755 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -261,6 +261,7 @@ class MainView(QtGui.QWidget): #Area to be included in MainView self.noteArea = QtGui.QTextEdit() + self.noteArea.setReadOnly(True) self.obj_appconfig.noteArea['Note'] = self.noteArea self.obj_appconfig.noteArea['Note'].append(' eSim Started......') self.obj_appconfig.noteArea['Note'].append('Project Selected : None') |