mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-14 22:26:00 +01:00
I guess this mutex is no longer needed
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
43c3ba86f4
commit
0ac744c076
1 changed files with 6 additions and 1 deletions
|
@ -24,7 +24,12 @@ typedef struct zathura_page_widget_private_s {
|
|||
zathura_t* zathura; /**< Zathura object */
|
||||
cairo_surface_t* surface; /**< Cairo surface */
|
||||
ZathuraRenderRequest* render_request; /* Request object */
|
||||
mutex lock; /**< Lock */
|
||||
/** Lock
|
||||
*
|
||||
* This mutex can probably be removed. All functions are now called from the
|
||||
* main thread.
|
||||
*/
|
||||
mutex lock;
|
||||
bool cached; /**< Cached state */
|
||||
|
||||
struct {
|
||||
|
|
Loading…
Reference in a new issue