mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2026-01-06 19:22:40 +01:00
ХМ
This commit is contained in:
parent
5f3d4b0264
commit
ef33dd0bf3
@ -561,28 +561,28 @@ while true do
|
|||||||
{lang.contextMenuRemoveWallpaper, not wallpaper}
|
{lang.contextMenuRemoveWallpaper, not wallpaper}
|
||||||
)
|
)
|
||||||
|
|
||||||
if action == "Показывать скрытые файлы" then
|
if action == lang.showHiddenFiles then
|
||||||
showHiddenFiles = true
|
showHiddenFiles = true
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Скрывать скрытые файлы" then
|
elseif action == lang.hideHiddenFiles then
|
||||||
showHiddenFiles = false
|
showHiddenFiles = false
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Показывать формат файлов" then
|
elseif action == lang.showFileFormat then
|
||||||
showFileFormat = true
|
showFileFormat = true
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Скрывать формат файлов" then
|
elseif action == lang.hideFileFormat then
|
||||||
showFileFormat = false
|
showFileFormat = false
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Сортировать по имени" then
|
elseif action == lang.sortByName then
|
||||||
sortingMethod = "name"
|
sortingMethod = "name"
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Сортировать по дате" then
|
elseif action == lang.sortByDate then
|
||||||
sortingMethod = "date"
|
sortingMethod = "date"
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Сортировать по типу" then
|
elseif action == lang.sortByType then
|
||||||
sortingMethod = "type"
|
sortingMethod = "type"
|
||||||
drawAll()
|
drawAll()
|
||||||
elseif action == "Удалить обои" then
|
elseif action == lang.contextMenuRemoveWallpaper then
|
||||||
wallpaper = nil
|
wallpaper = nil
|
||||||
fs.remove(pathToWallpaper)
|
fs.remove(pathToWallpaper)
|
||||||
drawAll(true)
|
drawAll(true)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user