mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 21:06:59 -04:00
Card data in images (minimum viable)
* remove wxEmptyString * improve style tab carousel * create web request window * add drop target and drop source
This commit is contained in:
@@ -192,7 +192,7 @@ int KeywordList::usage(const Keyword& kw) const {
|
||||
// ----------------------------------------------------------------------------- : KeywordList : Item text
|
||||
|
||||
String KeywordList::OnGetItemText (long pos, long col) const {
|
||||
if (sorted_list.size() == 0) return wxEmptyString;
|
||||
if (sorted_list.size() == 0) return _("");
|
||||
|
||||
const Keyword& kw = *getKeyword(pos);
|
||||
switch(col) {
|
||||
@@ -218,7 +218,7 @@ String KeywordList::OnGetItemText (long pos, long col) const {
|
||||
}
|
||||
return formatted;
|
||||
}
|
||||
default: return wxEmptyString;
|
||||
default: return _("");
|
||||
}
|
||||
}
|
||||
int KeywordList::OnGetItemImage(long pos) const {
|
||||
|
||||
Reference in New Issue
Block a user