mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
reread current directory files after unplug from PC
This commit is contained in:
10
commands.lua
10
commands.lua
@@ -191,8 +191,8 @@ function Commands:new(obj)
|
||||
G_screen_saver_mode = false
|
||||
end
|
||||
)
|
||||
obj:add(KEY_CHARGING, nil, nil,
|
||||
"",
|
||||
obj:add(KEY_CHARGING, nil, "plugin/out usb",
|
||||
"toggle usb drive mode",
|
||||
function()
|
||||
--os.execute("echo 'usb in' >> /mnt/us/event_test.txt")
|
||||
if G_charging_mode == false and G_screen_saver_mode == false then
|
||||
@@ -206,8 +206,8 @@ function Commands:new(obj)
|
||||
G_charging_mode = true
|
||||
end
|
||||
)
|
||||
obj:add(KEY_NOT_CHARGING, nil, nil,
|
||||
"",
|
||||
obj:add(KEY_NOT_CHARGING, nil, "plugin/out usb",
|
||||
"toggle usb drive mode",
|
||||
function()
|
||||
--os.execute("echo 'usb out' >> /mnt/us/event_test.txt")
|
||||
if G_charging_mode == true and G_screen_saver_mode == false then
|
||||
@@ -217,6 +217,8 @@ function Commands:new(obj)
|
||||
Screen:restoreFromSavedBB()
|
||||
fb:refresh(0)
|
||||
end
|
||||
FileChooser:setPath(FileChooser.path)
|
||||
FileChooser.pagedirty = true
|
||||
G_charging_mode = false
|
||||
end
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user