Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Symbol name in dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
zrzka committed Oct 1, 2017
1 parent b81a77f commit 6f9065b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## master (unreleased)

*
* Find usages contains symbol name in the dialog title


## 1.0.2 (2017-10-01)
Expand Down
4 changes: 2 additions & 2 deletions blackmamba/script/find_usages.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def open_location(item, shift_enter):
_open_and_scroll(item.path, item.line)

v = PickerView()
v.name = 'Usages'
v.name = '{} usages'.format(definitions[0].name)
v.datasource = LocationDataSource(definitions)

v.shift_enter_enabled = False
Expand All @@ -87,7 +87,7 @@ def open_location(item, shift_enter):
'\n'
'Esc - close • Cmd . - close with Apple smart keyboard'
)
v.textfield.placeholder = 'Start typing to filter files...'
v.textfield.placeholder = 'Start typing to filter usages...'
v.did_select_item_action = open_location
v.present('sheet')
v.wait_modal()
Expand Down

0 comments on commit 6f9065b

Please sign in to comment.