Skip to content

Commit

Permalink
saner layout for find/replace dlg
Browse files Browse the repository at this point in the history
  • Loading branch information
Rene Schallner committed May 13, 2018
1 parent 4c84112 commit aac3bdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/findandreplace.py
Expand Up @@ -2,6 +2,7 @@
from PyQt5.QtCore import Qt, pyqtSignal
from PyQt5.QtWidgets import *
from PyQt5.Qsci import *
from PyQt5.QtGui import *


class FindInputLine(QTextEdit):
Expand Down Expand Up @@ -43,8 +44,7 @@ def initUI(self):


self.findField = FindInputLine(self)
self.findField.resize(250,50)

self.findField.setMaximumHeight(40)

self.caseSens = QCheckBox("Case sensitive",self)
if self.caseSens.isChecked():
Expand All @@ -69,7 +69,7 @@ def initUI(self):
self.regexRadio.toggled.connect(self.regexMode)

self.replaceField = FindInputLine(self)
self.replaceField.resize(250,50)
self.replaceField.setMaximumHeight(40)

optionsLabel = QLabel("Options: ",self)

Expand Down

0 comments on commit aac3bdc

Please sign in to comment.