Skip to content

Commit 5300e17

Browse files
committed
Fix handling user input for nested menus
1 parent d016184 commit 5300e17

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.5.1
4+
5+
- Fixed enabling/disabling handling input for nested menus
6+
37
## 0.5.0
48

59
- Added support for rofi 1.6 (handle correctly ROFI_RETV, ROFI_INFO)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rofi-menu"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Create rofi menus via python"
55
authors = ["miphreal <[email protected]>"]
66
license = "MIT"

rofi_menu/menu.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -249,11 +249,9 @@ async def render(self, meta):
249249
_rofi_menu = [
250250
meta.rofi_mode.menu_prompt(self.prompt),
251251
meta.rofi_mode.menu_enable_markup(),
252+
meta.rofi_mode.menu_no_input(not self.allow_user_input),
252253
]
253254

254-
if not self.allow_user_input:
255-
_rofi_menu.append(meta.rofi_mode.menu_no_input())
256-
257255
for num, item in enumerate(self.items):
258256
if constants.FLAG_STYLE_ACTIVE in item.flags:
259257
_rofi_menu.append(meta.rofi_mode.menu_active(num))

rofi_menu/rofi_mode/rofi_mode_16.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def menu_active(num: int) -> str:
3333

3434

3535
def menu_no_input(val: bool = True) -> str:
36-
return "\0no-custom\x1f" + "true" if val else "false"
36+
return "\0no-custom\x1f" + ("true" if val else "false")
3737

3838

3939
def menu_entry(text, **fields):

0 commit comments

Comments
 (0)