Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
fixed error on "Settings" option #58
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Jun 29, 2016
1 parent c8fa6fc commit cc2c7b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Version 0.7.5
- added Tab Pump-Settings -> [Class Ranges] options
- fixed Pump-Settings->Advanced Mode:: allow run after started AP
- some improvements on module DnsSpoof,ArpPoison and Core::main closeEvent
- fixed error on "Settings" option #58

Version 0.7.3
-------------
Expand Down
1 change: 1 addition & 0 deletions Core/config/commits/Lcommits.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ master:
{ changelog : 'added Tab Pump-Settings -> Class Ranges options' },
{ changelog : 'fixed Pump-Settings->Advanced Mode:: allow run after started AP' },
{ changelog : 'some improvements on module DnsSpoof,ArpPoison and Core::main closeEvent' },
{ changelog : 'fixed error on "Settings" option #58' },
]
1 change: 0 additions & 1 deletion Core/utility/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def save_settings(self):

self.Settings.set_setting('settings','mdk3',str(self.txt_arguments.text()))
self.Settings.set_setting('settings','scanner_rangeIP',str(self.txt_ranger.text()))
self.Settings.set_setting('accesspoint','interface',str(self.interface.text()))
self.Settings.set_setting('accesspoint','APname', str(self.Apname.text()))
self.Settings.set_setting('accesspoint','channel', str(self.channel.value()))
self.Settings.set_setting('settings','redirect_port', str(self.redirectport.text()))
Expand Down
7 changes: 5 additions & 2 deletions Core/widgets/PopupModels.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ def __init__(self,FSettings):
self.layout = QVBoxLayout()
self.FormLayout = QFormLayout()
self.GridForm = QGridLayout()
self.StatusLabel = QLabel(self)
self.Status = QStatusBar()
self.StatusLabel= QLabel(self)
self.Status.addWidget(QLabel('Status::'))
self.Status.addWidget(self.StatusLabel)
self.GroupBox = QGroupBox()
self.GroupBox.setTitle('::Server-HTTP::')
self.GroupBox.setLayout(self.FormLayout)
Expand Down Expand Up @@ -149,7 +152,7 @@ def __init__(self,FSettings):
self.GridForm.addWidget(self.btntemplates,1,1)
self.GridForm.addWidget(self.btnStopServer,1,2)
self.FormLayout.addRow(self.GridForm)
self.FormLayout.addRow('Status::',self.StatusLabel)
self.FormLayout.addWidget(self.Status)
self.layout.addWidget(self.GroupBox)
self.setLayout(self.layout)

Expand Down

0 comments on commit cc2c7b6

Please sign in to comment.