Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ecogvis/ecogvis.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def init_gui(self):
self.win3.hideAxis('bottom')

form_3 = QGridLayout()
form_3.setSpacing(0.0)
form_3.setSpacing(0)
form_3.setRowStretch(0, 1)
form_3.setRowStretch(1, 8)
form_3.setRowStretch(2, 1)
Expand Down
4 changes: 2 additions & 2 deletions ecogvis/functions/audio_event_detection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from PyQt5 import QtGui, QtCore
from PyQt5 import QtGui, QtCore, QtWidgets
from PyQt5.QtWidgets import (QGridLayout, QGroupBox, QLineEdit, QLabel, QComboBox,
QPushButton, QVBoxLayout, QHBoxLayout)
import pyqtgraph as pg
Expand All @@ -10,7 +10,7 @@


# Creates Audio Event Detection window -----------------------------------------
class AudioEventDetection(QtGui.QDialog):
class AudioEventDetection(QtWidgets.QDialog):
def __init__(self, parent):
super().__init__()
self.parent = parent
Expand Down
10 changes: 5 additions & 5 deletions ecogvis/functions/event_related_potential.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from PyQt5 import QtGui, QtCore
from PyQt5 import QtGui, QtCore, QtWidgets
from PyQt5.QtWidgets import (QGridLayout, QGroupBox, QLineEdit, QHBoxLayout,
QWidget, QLabel, QPushButton, QVBoxLayout,
QComboBox, QScrollArea, QMainWindow)
Expand Down Expand Up @@ -463,7 +463,7 @@ def mouseDoubleClickEvent(self, ev):


# Individual Event-Related Potential dialog ------------------------------------
class IndividualERPDialog(QtGui.QDialog):
class IndividualERPDialog(QtWidgets.QDialog):
def __init__(self, parent):
super().__init__()
# Enable antialiasing for prettier plots
Expand Down Expand Up @@ -629,8 +629,8 @@ def draw_erp(self):


# Gray line for visual separation of buttons -----------------------------------
class QHLine(QtGui.QFrame):
class QHLine(QtWidgets.QFrame):
def __init__(self):
super().__init__()
self.setFrameShape(QtGui.QFrame.HLine)
self.setFrameShadow(QtGui.QFrame.Sunken)
self.setFrameShape(QtWidgets.QFrame.HLine)
self.setFrameShadow(QtWidgets.QFrame.Sunken)
Loading