mirror of
https://github.com/makew0rld/amfora.git
synced 2025-01-03 14:56:27 -05:00
🐛 Fixes #91
This commit is contained in:
parent
4fbaa978d4
commit
eb10c26599
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Fixed
|
||||
- XDG user dir file is parsed instead of looking for XDG env vars (#97, #100)
|
||||
- Support paths with spaces in HTTP browser config setting (#77)
|
||||
- Clicking "Change" on an existing bookmark without changing the text no longer removes it (#91)
|
||||
|
||||
|
||||
## [v1.5.0] - 2020-09-01
|
||||
|
@ -88,7 +88,7 @@ func openBkmkModal(name string, exists bool, favicon string) (string, int) {
|
||||
if favicon != "" && !exists {
|
||||
name = favicon + " " + name
|
||||
}
|
||||
bkmkModalText = ""
|
||||
bkmkModalText = name
|
||||
bkmkModal.GetForm().AddInputField("Name: ", name, 0, nil,
|
||||
func(text string) {
|
||||
// Store for use later
|
||||
|
Loading…
Reference in New Issue
Block a user