-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[python] - allow detailedmode for xbmcgui.Dialog().select() / multiselect() #10586
Conversation
@phil65, thank you for improving Kodi! According to the last 5 commits, we found the potential reviewers: @Paxxi, @tamland and @AlwinEsch. Final approval needs to be given by the component maintainer. |
94a5c8b
to
1b18687
Compare
tested and works fine on my end. thx! |
Thankyou Sent from my iPhone On Sep 29, 2016, at 11:36 PM, ronie <notifications@github.commailto:notifications@github.com> wrote: tested and works fine on my end. thx! — |
@@ -101,7 +101,7 @@ namespace XBMCAddon | |||
} | |||
|
|||
|
|||
int Dialog::select(const String& heading, const std::vector<String>& list, int autoclose, int preselect) | |||
int Dialog::select(const String& heading, const std::vector<Alternative<String, const ListItem* > > & list, int autoclose, int preselect, bool useDetails) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
||
String listLine; | ||
for(unsigned int i = 0; i < list.size(); i++) | ||
for (const auto item : list) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
c39392b
to
066ee66
Compare
@tamland updated, including the docs. |
looks good |
6d2b426
to
e331872
Compare
Updated to include @python_v17 remarks. |
e331872
to
6275647
Compare
Jenkins build and merge |
Allows to use the detailedmode for our Dialog().select() and Dialog().multiselect() methods
@ronie @tamland