Skip to content

Commit a3f434c

Browse files
committed
use a safer value
1 parent 9d07a5c commit a3f434c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyprland/plugins/scratchpads/objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async def initialize(self, ex: "_scratchpads_extension_m.Extension") -> None:
123123
self.client_info = m_client
124124
assert self.client_info, "couldn't find a matching client"
125125
await ex.hyprctl(f"movetoworkspacesilent special:scratch_{self.uid},address:{self.full_address}")
126-
await asyncio.sleep(0.001) # workaround
126+
await asyncio.sleep(0.05) # workaround
127127
self.meta.initialized = True
128128

129129
async def is_alive(self) -> bool:

pyprland/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version."""
22

3-
VERSION = "2.4.5-17"
3+
VERSION = "2.4.5-18"

0 commit comments

Comments
 (0)