mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
fix long word bug in Rtl support
This commit is contained in:
@@ -529,7 +529,7 @@ public class RtlUtils {
|
||||
|
||||
do {
|
||||
if ((line.length() + phrase.length() + word.length() < line_max_size) ||
|
||||
(phrase.length() == 0 && word.length() > line_max_size)) {
|
||||
(line.length() == 0 && word.length() > line_max_size)) {
|
||||
if (isSpaceSign(c)) {
|
||||
word.append(c);
|
||||
addCharToWord = true;
|
||||
|
||||
Reference in New Issue
Block a user