1.1 KiB
1.1 KiB
title | id | weight | draft | author |
---|---|---|---|---|
darktable.gui.views.lighttable | lighttable | 30 | false | people |
The lighttable view
Attributes:
darktable.gui.views.lighttable.is_image_visible
function(
image : types.dt_lua_image_t
) : types.dt_lua_image_t
Check if the image is visible in lighttable view. The lighttable must be in file manager or zoomable mode.
- image - types.dt_lua_image_t - The image to be checked.
- return - boolean - True if the image is displayed. False if the image is partially displayed or not displayed.
darktable.gui.views.lighttable.set_image_visible
function(
image : types.dt_lua_image_t
) : types.dt_lua_image_t
Set the image visible in lighttable view. The lighttable must be in file manager or zoomable mode.
- image - types.dt_lua_image_t - The image to set visible.
- return - int - An error is returned if no image is specified.