File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Plugins/Flow.Launcher.Plugin.Sys Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -497,7 +497,15 @@ private List<Result> Commands(Query query)
497497 Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue790 " ) ,
498498 Action = c =>
499499 {
500- _context . API . ChangeQuery ( $ "{ query . ActionKeyword } { ( string . IsNullOrEmpty ( query . ActionKeyword ) ? string . Empty : Plugin . Query . ActionKeywordSeparator ) } { ThemeSelector . Keyword } { Plugin . Query . ActionKeywordSeparator } ") ;
500+ if ( string . IsNullOrEmpty ( query . ActionKeyword ) )
501+ {
502+ _context . API . ChangeQuery ( $ "{ ThemeSelector . Keyword } { Plugin . Query . ActionKeywordSeparator } ") ;
503+ }
504+ else
505+ {
506+ _context . API . ChangeQuery ( $ "{ query . ActionKeyword } { Plugin . Query . ActionKeywordSeparator } { ThemeSelector . Keyword } { Plugin . Query . ActionKeywordSeparator } ") ;
507+
508+ }
501509 return false ;
502510 }
503511 }
You can’t perform that action at this time.
0 commit comments