mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* Improved the Art Gallery App and the AI Portrait Picker. Added a search function to them. (#65481) * Improved the Art Gallery App. Added a search function to it. * Improved the Art Gallery App and the AI Portrait Picker. Added a search function to them. Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
7 lines
297 B
Plaintext
7 lines
297 B
Plaintext
/// Only returns paintings with 23x23 or 24x24 sizes fitting AI display icon.
|
|
#define PAINTINGS_FILTER_AI_PORTRAIT (1<<0)
|
|
/// Search mode for the title of the painting
|
|
#define PAINTINGS_FILTER_SEARCH_TITLE (1<<1)
|
|
/// Ditto but for the creator's name
|
|
#define PAINTINGS_FILTER_SEARCH_CREATOR (1<<2)
|