Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[lipstick] Use also domain handlers for app opening. Contributes to J…
…B#44657

Default action still using only the scheme handlers,
in practice shouldn't make a difference but perhaps better this way.
  • Loading branch information
pvuorela committed Feb 24, 2021
1 parent 58be4ce commit 929faf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rpm/lipstick-qt5.spec
Expand Up @@ -5,7 +5,7 @@ Name: lipstick-qt5
%define icondirectory %{_datadir}/icons/hicolor/86x86/apps

Summary: QML toolkit for homescreen creation
Version: 0.34.7
Version: 0.34.47
Release: 1
License: LGPLv2
URL: http://github.com/nemomobile/lipstick
Expand Down
2 changes: 1 addition & 1 deletion src/compositor/lipstickcompositor.cpp
Expand Up @@ -220,7 +220,7 @@ bool LipstickCompositor::openUrl(const QUrl &url)
defaultAction,
isFile
? ContentAction::Action::actionsForFile(url)
: ContentAction::Action::actionsForScheme(url.toString()));
: ContentAction::Action::actionsForUrl(url.toString()));
return true;
} else if (defaultAction.isValid()) {
defaultAction.trigger();
Expand Down

0 comments on commit 929faf4

Please sign in to comment.