这是indexloc提供的服务,不要输入任何密码
Skip to content

Commit a5bcd56

Browse files
Changed: Increase blurb length from 60 to 120 since Tasker doesn't have that limit
If it affects other plugin host apps, it should be reported so that conditional blurb size can be used.
1 parent fecba50 commit a5bcd56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/termux/tasker/EditConfigurationActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ String generateBlurb(final String executable, final String arguments, boolean in
260260
builder.append("\n").append(getString(waitForResult ? R.string.blurb_wait_for_result : R.string.blurb_no_wait_for_result));
261261

262262
String blurb = builder.toString();
263-
final int maxBlurbLength = 60; // R.integer.twofortyfouram_locale_maximum_blurb_length
263+
final int maxBlurbLength = 120; // R.integer.twofortyfouram_locale_maximum_blurb_length is set to 60 but we are ignoring that since Tasker doesn't have that limit.
264264
return (blurb.length() > maxBlurbLength) ? blurb.substring(0, maxBlurbLength) : blurb;
265265
}
266266

0 commit comments

Comments
 (0)