Skip to content

Commit 17e4d9d

Browse files
Fix[#3287]: bottles with a different name and path weren't runnable through bottle picker (#3451)
Co-authored-by: Mirko Brombin <[email protected]>
1 parent 424af7a commit 17e4d9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bottles/frontend/windows/bottlepicker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
class BottleEntry(Adw.ActionRow):
2828
def __init__(self, config: BottleConfig):
2929
super().__init__()
30-
self.bottle = config.Path
30+
self.bottle = config.Name
3131
self.set_title(config.Name)
3232

3333

0 commit comments

Comments
 (0)