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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ RfCat currently requires Python 2.7. the only suspected incompatibilities with
* python usb
* libusb - should be able to work with either 1.x or 0.1 versions. please let us know if you run into issues.
* pyreadline (especially for Windows)
* PySide2 (for Spectrum Analyzer GUI): (Ubuntu 18.10+: python-pyside2)
PySide2 is no longer installed automatically, due to support concerns for RPi platforms. You can install it (if available for your platform) using pip:
$ sudo pip install PySide2
* PySide6 (for Spectrum Analyzer GUI):
PySide6 is not installed automatically, due to support concerns for RPi platforms. You can install it (if available for your platform) using pip:
$ sudo pip install PySide6

### Build requirements

Expand Down
6 changes: 3 additions & 3 deletions rflib/ccspecan.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
else:
import pickle as pickle

from PySide2 import QtCore, QtGui, QtWidgets
from PySide2.QtCore import Qt, QPointF, QLineF
from PySide6 import QtCore, QtGui, QtWidgets
from PySide6.QtCore import Qt, QPointF, QLineF

def ensureQapp():
global _qt_app
Expand Down Expand Up @@ -379,7 +379,7 @@ def mousePressEvent(self, event):
self.render_area._mouse_x2 = self.render_area._x_to_hz(float(event.x()))
self.render_area._mouse_y2 = self.render_area._y_to_dbm(float(event.y()))
self.render_area._hide_markers = False
if event.button() == Qt.MidButton:
if event.button() == Qt.MiddleButton:
self.render_area._mouse_x = None
self.render_area._mouse_y = None
self.render_area._mouse_x2 = None
Expand Down
2 changes: 1 addition & 1 deletion rflib/rflib_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
RFLIB_VERSION=630
RFLIB_VERSION=636