[haiku-commits] Change in haiku[master]: HaikuDepot: Contents for Local Pkg

  • From: Gerrit <review@xxxxxxxxxxxxxxxxxxx>
  • To: waddlesplash <waddlesplash@xxxxxxxxx>, haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 31 May 2020 03:31:33 +0000

From Andrew Lindesay <apl@xxxxxxxxxxxxxx>:

Andrew Lindesay has uploaded this change for review. ( 
https://review.haiku-os.org/c/haiku/+/2853 ;)


Change subject: HaikuDepot: Contents for Local Pkg
......................................................................

HaikuDepot: Contents for Local Pkg

Enables the content tab for showing contents of
on-disk, but not yet installed package.

Resolves #16161
---
M src/apps/haikudepot/ui/PackageInfoView.cpp
1 file changed, 2 insertions(+), 1 deletion(-)



  git pull ssh://git.haiku-os.org:22/haiku refs/changes/53/2853/1

diff --git a/src/apps/haikudepot/ui/PackageInfoView.cpp 
b/src/apps/haikudepot/ui/PackageInfoView.cpp
index 8816593..f45b0b2 100644
--- a/src/apps/haikudepot/ui/PackageInfoView.cpp
+++ b/src/apps/haikudepot/ui/PackageInfoView.cpp
@@ -1251,7 +1251,8 @@
                TabAt(TAB_CHANGELOG)->SetEnabled(
                        package.Get() != NULL && package->HasChangelog());
                TabAt(TAB_CONTENTS)->SetEnabled(
-                       package.Get() != NULL && package->State() == ACTIVATED);
+                       package.Get() != NULL
+                               && (package->State() == ACTIVATED || 
package->IsLocalFile()));
                Invalidate(TabFrame(TAB_CHANGELOG));
                Invalidate(TabFrame(TAB_CONTENTS));


--
To view, visit https://review.haiku-os.org/c/haiku/+/2853
To unsubscribe, or for help writing mail filters, visit 
https://review.haiku-os.org/settings

Gerrit-Project: haiku
Gerrit-Branch: master
Gerrit-Change-Id: I5e4764cf3e9f1e46eafb3d98917a357fece854dc
Gerrit-Change-Number: 2853
Gerrit-PatchSet: 1
Gerrit-Owner: Andrew Lindesay <apl@xxxxxxxxxxxxxx>
Gerrit-MessageType: newchange

Other related posts:

  • » [haiku-commits] Change in haiku[master]: HaikuDepot: Contents for Local Pkg - Gerrit