diff --git a/lib/pangea/morphs/morph_meaning/morph_info_repo.dart b/lib/pangea/morphs/morph_meaning/morph_info_repo.dart index 86408b55f..049dffcda 100644 --- a/lib/pangea/morphs/morph_meaning/morph_info_repo.dart +++ b/lib/pangea/morphs/morph_meaning/morph_info_repo.dart @@ -1,5 +1,4 @@ import 'dart:convert'; -import 'dart:developer'; import 'package:flutter/foundation.dart'; @@ -95,7 +94,6 @@ class MorphInfoRepo { LanguageKeys.defaultLanguage, ), ); - debugger(when: kDebugMode); final morph = res.getFeatureByCode(feature.name); final data = morph?.getTagByCode(tag); diff --git a/lib/pangea/toolbar/widgets/word_zoom/morphological_list_item.dart b/lib/pangea/toolbar/widgets/word_zoom/morphological_list_item.dart index f7e4e1038..778ddbe72 100644 --- a/lib/pangea/toolbar/widgets/word_zoom/morphological_list_item.dart +++ b/lib/pangea/toolbar/widgets/word_zoom/morphological_list_item.dart @@ -260,14 +260,17 @@ class MorphMeaningPopupState extends State { morphTag: _morphTag, ), ), - Text( - getGrammarCopy( - category: _morphFeature.name, - lemma: _morphTag, - context: context, - ) ?? - _morphTag, - style: Theme.of(context).textTheme.titleMedium, + Flexible( + child: Text( + textAlign: TextAlign.center, + getGrammarCopy( + category: _morphFeature.name, + lemma: _morphTag, + context: context, + ) ?? + _morphTag, + style: Theme.of(context).textTheme.titleMedium, + ), ), if (MatrixState.pangeaController.getAnalytics .constructListModel