Skip to content

Commit a0b0219

Browse files
committed
Minor change
1 parent 58d519a commit a0b0219

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ executable. The script generates an executable called `massivemacro_macos`, a `.
6060
`sh macos/pull_and_build.sh` can be run from the root MassiveMacro directory to pull the latest
6161
version of MassiveMacro from GitHub before running `macos/build.sh`.
6262

63+
To make MassiveMacro compatible with older versions of Mac OS X, follow the instructions
64+
[here](https://gist.github.com/phfaist/a5b8a895b003822df5397731f4673042).
65+
6366
## Usage
6467

6568
MassiveMacro is primarily built for Discord, but it works in other applications as well to varying
@@ -70,7 +73,7 @@ multiple messages by default.
7073

7174
The command line option `--no-gui` can be used to disable the GUI.
7275

73-
Precompiled binaries are available for Windows, Linux and Mac OS X.
76+
Precompiled binaries are available for Windows, Linux and Mac OS X 10.13+.
7477

7578
### Key bindings
7679

massivemacro/massivemacro_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from json import JSONDecodeError
55

6-
from PyQt5.QtCore import QRegExp, QSize
6+
from PyQt5.QtCore import QRegExp
77
from PyQt5.QtGui import QFont, QIcon, QRegExpValidator
88
from PyQt5.QtWidgets import QAction, QApplication, QCheckBox, QComboBox, QGridLayout, QLabel, \
99
QLineEdit, QMainWindow, QMenu, QSystemTrayIcon, QWidget, qApp
@@ -23,7 +23,7 @@ def __init__(self):
2323
self.icon = QIcon(get_resource("icon.png"))
2424
self.setWindowIcon(self.icon)
2525

26-
self.setMinimumSize(QSize(330, 0))
26+
self.setMinimumSize(400, 0)
2727
self.setWindowTitle("MassiveMacro")
2828
self.widget = QWidget(self)
2929
self.setCentralWidget(self.widget)

0 commit comments

Comments
 (0)