[packagechooser] Set GlobalStorage packagechooser_<id>

This commit is contained in:
Adriaan de Groot 2019-08-03 23:51:00 +02:00
parent c59ffc7765
commit 140c0db7a4
6 changed files with 45 additions and 1 deletions

View file

@ -128,6 +128,10 @@ PackageListModel::data( const QModelIndex& index, int role ) const
{
return m_packages[ row ].screenshot;
}
else if ( role == IdRole )
{
return m_packages[ row ].id;
}
return QVariant();
}