Some UI widgets constructor refactor and minor function renaming.

Added Moonshot LLM models support.
This commit is contained in:
Martín Lucas Golini
2026-02-04 01:31:43 -03:00
parent ec47dffa30
commit f2d491384d
56 changed files with 280 additions and 259 deletions

View File

@@ -1408,7 +1408,7 @@ void LLMChatUI::showMsg( String msg ) {
msgBox->getTextBox()->setPixelsSize(
{ PixelDensity::dpToPx( 600 ), msgBox->getTextBox()->getPixelsSize().getHeight() } );
msgBox->getTextBox()->setWordWrap( true );
msgBox->getTextBox()->setTextSelection( true );
msgBox->getTextBox()->setTextSelectionEnabled( true );
msgBox->getTextBox()->onClick(
[]( const MouseEvent* event ) {
auto tv = event->getNode()->asType<UITextView>();