Skip to content

Commit 483064a

Browse files
committed
- BugFix: Could not remove packages when internet connection was down
(thanks to Theluga).
1 parent 8a3731b commit 483064a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
BugFix: Updated some LANG environment variables to C.UTF-8.
33
BugFix: Info/Files tabs were always empty if they were selected at octopi's start.
44
BugFix: Do not install notifier's desktop file in /etc/xdg/autostart.
5+
BugFix: Could not remove packages when internet connection was down (thanks to Theluga).
56
Added shortcut key "Ctrl+Shift+U" to upgrade outdated AUR packages.
67
Arrow keys navegation refresh Info and Files tabs again.
78
Updated translations.

src/mainwindow_transaction.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,7 @@ void MainWindow::toggleSystemActions(const bool value)
21222122
*/
21232123
void MainWindow::commitTransaction()
21242124
{
2125-
if (!isInternetAvailable()) return;
2125+
if (getInstallTransactionParentItem()->rowCount() > 0 && !isInternetAvailable()) return;
21262126

21272127
if (isNotifierBusy()) return;
21282128

0 commit comments

Comments
 (0)