[设置 > PowerToys Run 页面] 如果 PT Run 进程更新插件配置,则设置不会立即更新,

r1zhe5dt  于 6个月前  发布在  其他
关注(0)|答案(2)|浏览(48)

Microsoft PowerToys版本

0.81.1

安装方法

GitHub

以管理员身份运行

出现问题的区域?

设置

重现步骤

  1. 打开PT Run的设置。
  2. 禁用PT Run。
  3. 为插件设置启用的GPO。
  4. 在设置中启用PT Run。

✔️ 预期行为

更改后的GPO会反映在设置界面上。

❌ 实际行为

我必须重新打开设置窗口。

其他软件

  • 无响应*
6pp0gazn

6pp0gazn1#

你好,我是一个基于问题标题查找相似问题的AI机器人。
请查看下面的问题,看看它们是否解决了你的问题。如果问题描述了你的问题,请考虑关闭此问题并为其他问题点赞,以帮助我们优先处理。谢谢!
已关闭的相似问题:

注意:您可以通过点赞或点踩这条评论来给我反馈。

2uluyalo

2uluyalo2#

I tried to fix it. But I don't find the exact error. It seems that the FileWatcher in the code of the Page is not working correctly and mostly gets not triggered.
PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerLauncherPage.xaml.cs
Lines 42 to 68 in 8b8c75b
| | _= Helper.GetFileWatcher(PowerLauncherSettings.ModuleName,"settings.json",()=> |
| | { |
| | if(Environment.TickCount <_lastIPCMessageSentTick+500) |
| | { |
| | // Don't try to update data from the file if we tried to write to it through IPC in the last 500 milliseconds. |
| | return; |
| | } |
| | |
| | PowerLauncherSettingspowerLauncherSettings=null; |
| | try |
| | { |
| | powerLauncherSettings=SettingsRepository.GetInstance(settingsUtils)?.SettingsConfig; |
| | } |
| | catch(IOExceptionex) |
| | { |
| | Logger.LogInfo(ex.Message); |
| | } |
| | |
| | if(powerLauncherSettings!=null&&!ViewModel.IsUpToDate(powerLauncherSettings)) |
| | { |
| | this.DispatcherQueue.TryEnqueue(()=> |
| | { |
| | DataContext=ViewModel=new PowerLauncherViewModel(powerLauncherSettings,SettingsRepository.GetInstance(settingsUtils), ShellPage.SendDefaultIPCMessage, App.IsDarkTheme); |
| | this.Bindings.Update(); |
| | }); |
| | } |
| | }); |

相关问题