MidnightCrowing
MidnightCrowing
想问一下, 这个算是bug吗?  插件版本: 1.7.1
在使用第三方工具(如截图工具)获取十六进制颜色值时,这些颜色值通常会带有#前缀。在之前的代码中,用户需要手动删除这个#前缀后才能将颜色值粘贴到HexColorLineEdit中。 这个修改简化了这个流程,现在用户可以直接粘贴带有#前缀的十六进制颜色值,控件会自动删掉这个前缀并更新显示内容。
### Python Version 3.13 ### Docs Page https://docs.python.org/zh-cn/3/py-modindex.html ### Original Translation https://docs.python.org/zh-cn/3/py-modindex.html 这个页面好像一直没有翻译过,但感觉有个翻译应该会更好吧? ### Original Docs Paragraph _No response_ ### Suggested Fix 想问一下能否把这个页面加入到翻译计划中?
### Python Version 3.13 ### Docs Page https://docs.python.org/zh-cn/3/reference/import.html#loaders ### Original Translation 示例:https://docs.python.org/zh-cn/3/reference/import.html#loaders 其中 > Added in version 3.4: 加载器的 [create_module()](https://docs.python.org/zh-cn/3/library/importlib.html#importlib.abc.Loader.create_module) 方法。 ’"Added in version"没有翻译,我看#164,这部分我们没有办法更改是吗? ### Original Docs Paragraph _No response_...
feat: #988 待解决的事情: - [ ] 添加i18n - [ ] 修改dock图标 可忽略问题: - [ ] 收藏视频卡片菜单显示位置有点突兀
fix #76 经测试,问题源于以下 CSS 动画未正确加载: ```css @keyframes oml2d-stage-slide-in { from { transform: translateY(130%); } to { transform: translateY(0%); } } ``` 将模型默认的 `translateY` 更改为 `0%` 能够解决此问题。不过,目前不确定这个调整是否会引发其他显示问题
如题 codesandbox:https://codesandbox.io/p/sandbox/969m5x  经测试,该问题与Toast有关,每显示一次Toast都会有新报错产生 怀疑与`\src\components\toast\index.tsx`有关: ```tsx const toast = (option: toastType) => { const jolPlayerToast = document.querySelector('#jolPlayerToast'); if (!jolPlayerToast) { const container = document.createElement('div'); container.id = 'jolPlayerToast'; document.querySelector('#JoL-player-container')!.appendChild(container); const root...