You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked that this issue has not already been reported.
I am using the latest version of Flow Launcher.
Problem Description
Flow.Launcher.ChangeQuery with requery: true expected to
Change query while keeping flow launcher visible
plugin callback def query(self, query) with the new query
Actual:
Flow launcher is hidden after action pressed (enter / click),
Only when I trigger flow launcher again ( via flow launcher hoteky) the new query shows and callback is called
To Reproduce
Add callback with python:
"Title": "test1 Hello World, this is where title goes. {}".format(('Your query is: ' + query , query)[query == '']),
"SubTitle": "This is where your subtitle goes, press enter to open Flow's url",
"IcoPath": "Images/app.png",
"JsonRPCAction":{"method":"Flow.Launcher.ChangeQuery", "parameters":[f"testing",True] }
Screenshots
Flow Launcher Version
1.16.1
Windows Build Number
10.0.19044.3086]
Error Log
Replace this line with the important log contents.
The text was updated successfully, but these errors were encountered:
I saw in one plugin there is another parameter dontHideAfterAction that is working for this purpose,
the below is working - it change flow launcher query immediately while keeping flow launcher visible:
"Title": "test1 Hello World, this is where title goes. {}".format(('Your query is: ' + query , query)[query == '']),
"SubTitle": "This is where your subtitle goes, press enter to open Flow's url",
"IcoPath": "Images/app.png",
"JsonRPCAction":{"method":"Flow.Launcher.ChangeQuery", "parameters":[f"testing",True], "dontHideAfterAction": True }
This is kindly the limitation of JsonRPC v1 as we always need an execution to trigger a flow api (which will hide according to dontHideAfterAction). V2 will make the behavior more consistent #1353 .
Checks
I have checked that this issue has not already been reported.
I am using the latest version of Flow Launcher.
Problem Description
Flow.Launcher.ChangeQuery with requery: true expected to
Actual:
Flow launcher is hidden after action pressed (enter / click),
Only when I trigger flow launcher again ( via flow launcher hoteky) the new query shows and callback is called
To Reproduce
Add callback with python:
"Title": "test1 Hello World, this is where title goes. {}".format(('Your query is: ' + query , query)[query == '']),
"SubTitle": "This is where your subtitle goes, press enter to open Flow's url",
"IcoPath": "Images/app.png",
"JsonRPCAction":{"method":"Flow.Launcher.ChangeQuery", "parameters":[f"testing",True] }
Screenshots
Flow Launcher Version
1.16.1
Windows Build Number
10.0.19044.3086]
Error Log
The text was updated successfully, but these errors were encountered: