Skip to content

Commit

Permalink
Fix flatpak build
Browse files Browse the repository at this point in the history
  • Loading branch information
tkashkin committed Sep 4, 2018
1 parent 01ef0c6 commit 53e10bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/dialogs/GameTagsDialog/GameTagsDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace GameHub.UI.Dialogs.GameTagsDialog
new_entry.margin = 4;

new_entry.icon_press.connect((icon, event) => {
if(icon == EntryIconPosition.SECONDARY && event.button == 1)
if(icon == EntryIconPosition.SECONDARY && ((EventButton) event).button == 1)
{
add_tag();
}
Expand Down

0 comments on commit 53e10bb

Please sign in to comment.