Skip to content

Commit

Permalink
- BugFix: Could not remove packages when internet connection was down
Browse files Browse the repository at this point in the history
(thanks to Theluga).
  • Loading branch information
aarnt committed Jun 8, 2024
1 parent 8a3731b commit 483064a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
BugFix: Updated some LANG environment variables to C.UTF-8.
BugFix: Info/Files tabs were always empty if they were selected at octopi's start.
BugFix: Do not install notifier's desktop file in /etc/xdg/autostart.
BugFix: Could not remove packages when internet connection was down (thanks to Theluga).
Added shortcut key "Ctrl+Shift+U" to upgrade outdated AUR packages.
Arrow keys navegation refresh Info and Files tabs again.
Updated translations.
Expand Down
2 changes: 1 addition & 1 deletion src/mainwindow_transaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2122,7 +2122,7 @@ void MainWindow::toggleSystemActions(const bool value)
*/
void MainWindow::commitTransaction()
{
if (!isInternetAvailable()) return;
if (getInstallTransactionParentItem()->rowCount() > 0 && !isInternetAvailable()) return;

if (isNotifierBusy()) return;

Expand Down

0 comments on commit 483064a

Please sign in to comment.