Skip to content

Commit

Permalink
1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parg committed Apr 24, 2024
1 parent 8fa205c commit a83e530
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion com/aelitis/plugins/rcmplugin/RelatedContentUISWT.java
Original file line number Diff line number Diff line change
Expand Up @@ -1567,6 +1567,8 @@ public void UIInputReceiverClosed(UIInputReceiver entryWindow) {
SimpleTextEntryWindow entryWindow = new SimpleTextEntryWindow(
"rcm.menu.findbyexpr.title", "rcm.menu.findbyexpr.msg" );

entryWindow.setTextLimit( 200 ); // underlying packet limit is 255 bytes containing term (UTF-8) and other guff

if ( last_search_expr != null && last_search_expr.trim().length() > 0 ){

entryWindow.setPreenteredText( last_search_expr, false );
Expand Down Expand Up @@ -2110,7 +2112,9 @@ public void UIInputReceiverClosed(UIInputReceiver entryWindow) {
{
SimpleTextEntryWindow entryWindow = new SimpleTextEntryWindow(
"rcm.menu.findbyexpr.title", "rcm.menu.findbyexpr.msg" );


entryWindow.setTextLimit( 200 ); // underlying packet limit is 255 bytes containing term (UTF-8) and other guff

String old_value = getLatestExpression();

entryWindow.setPreenteredText( old_value, false );
Expand Down
2 changes: 1 addition & 1 deletion plugin.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugin.class=com.aelitis.plugins.rcmplugin.RCMPlugin
plugin.name=Swarm Discoveries
plugin.id=aercm
plugin.version=1.0
plugin.version=1.2

0 comments on commit a83e530

Please sign in to comment.