Skip to content

Commit

Permalink
#138: Changes to support mauikit version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
probal31 committed May 5, 2024
1 parent 024ed77 commit 9e487e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions scripts/deploy-appimageupdate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ cmake -DCMAKE_BUILD_TYPE="Release" \
-DUSE_SYSTEM_INOTIFY_TOOLS=ON \
-DUSE_SYSTEM_LIBARCHIVE=ON \
-DUSE_SYSTEM_GTEST=OFF \
-DBUILD_TESTING=OFF \
.

make -j$(nproc)
Expand Down
4 changes: 2 additions & 2 deletions src/ui/templates/AppPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Maui.Page

if(Maui.Handy.singleClick || Maui.Handy.hasTransientTouchInput)
{
animate( _delegate.mapToItem(control, 0, 0), FB.FM.iconName(info.name))
animate( _delegate.mapToItem(control, 0, 0), FB.FM.getIconName(info.name))
control.packageClicked(index)
}
}
Expand All @@ -266,7 +266,7 @@ Maui.Page
_packagesGrid.currentIndex = index
if(!Maui.Handy.singleClick)
{
animate(_delegate.mapToItem(control, 0, 0), FB.FM.iconName(info.name))
animate(_delegate.mapToItem(control, 0, 0), FB.FM.getIconName(info.name))
control.packageClicked(index)
}
}
Expand Down

0 comments on commit 9e487e2

Please sign in to comment.