diff options
author | jgmdev <jgmdev@gmail.com> | 2022-06-08 15:25:39 -0400 |
---|---|---|
committer | jgmdev <jgmdev@gmail.com> | 2022-06-08 15:25:39 -0400 |
commit | 022c86485707902131f91e5f5b4fb388a09e3464 (patch) | |
tree | b6d52efac40d710c9ea84dcb98bc540194760430 /plugins/settings.lua | |
parent | b98f15d8a328bd13808df764339a6e53e3cce92b (diff) | |
download | lite-xl-plugins-022c86485707902131f91e5f5b4fb388a09e3464.tar.gz lite-xl-plugins-022c86485707902131f91e5f5b4fb388a09e3464.zip |
settings: added tooltip to website button
Diffstat (limited to 'plugins/settings.lua')
-rw-r--r-- | plugins/settings.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/settings.lua b/plugins/settings.lua index 9936b0e..80515f1 100644 --- a/plugins/settings.lua +++ b/plugins/settings.lua @@ -1399,6 +1399,7 @@ function Settings:setup_about() ---@type widget.button local button = Button(self.about, "Visit Website") + button:set_tooltip("Open https://lite-xl.com/") function button:on_click() open_link("https://lite-xl.com/") end ---@type widget.listbox @@ -1413,7 +1414,7 @@ local contributors_list = { { "Rxi", "Lite Founder", "https://github.com/rxi" }, { "Francesco Abbate", "Lite XL Founder", "https://github.com/franko" }, { "Adam Harrison", "Core", "https://github.com/adamharrison" }, - { "Andrea Zanellato", "CI", "https://github.com/redtide" }, + { "Andrea Zanellato", "CI, Website", "https://github.com/redtide" }, { "Björn Buckwalter", "MacOS Support", "https://github.com/bjornbm" }, { "boppyt", "Contributor", "https://github.com/boppyt" }, { "Cukmekerb", "Contributor", "https://github.com/vincens2005" }, |