diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2021-12-22 22:14:43 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2021-12-22 22:14:43 +0100 |
commit | 71593d438dff1a54986c94b469faa31c4581f6c7 (patch) | |
tree | d9209575ef368d015728937b47c5601ed3268bec /solo_tool_qt.py | |
parent | 5f7e75ae1e53d3833114880d20e899629d21e31a (diff) |
Fixed additive loading issue
Diffstat (limited to 'solo_tool_qt.py')
-rw-r--r-- | solo_tool_qt.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/solo_tool_qt.py b/solo_tool_qt.py index 71e2f82..9f4b7aa 100644 --- a/solo_tool_qt.py +++ b/solo_tool_qt.py @@ -19,7 +19,6 @@ class PlaylistModel(QAbstractListModel): path = Path(self.soloTool.getSongs()[index.row()]) return path.name - def rowCount(self, index): return len(self.soloTool.getSongs()) |