provider.setOutputEvent(MMI_KEY_UI_CLICKABLE_OBJECT);
provider.setUiClickableObject(resultType, __appId.c_str(), tooltipType, __itemList.size(), timestamp);
+ provider.setGridDepth(__currentGridInfo.currentStep + 1);
for (auto &item : *itemList) {
- provider.addInfoClickableObject(item.index, item.coordX, item.coordY, item.width, item.height, item.label.c_str());
+ auto label = (item.label.empty() ? to_string(item.index) : item.label);
+ provider.addInfoClickableObject(item.index, item.coordX, item.coordY, item.width, item.height, label.c_str());
}
}