mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-29 01:58:26 +00:00
Fix build with specific option combination (#1918)
Fixes incorrect member accessing left behind after #1910.
This commit is contained in:
parent
2d50767216
commit
c635df8689
@ -31,6 +31,7 @@ extern "C" {
|
||||
}
|
||||
|
||||
#include <config.h>
|
||||
#include "geometry.h"
|
||||
|
||||
#ifdef BUILD_MOUSE_EVENTS
|
||||
#include "mouse-events.h"
|
||||
|
@ -77,7 +77,7 @@ bool use_xpmdb_setting::set_up(lua::state &l) {
|
||||
if (!out_to_x.get(l)) return false;
|
||||
|
||||
window.back_buffer =
|
||||
XCreatePixmap(display, window.window, window.width + 1, window.height + 1,
|
||||
XCreatePixmap(display, window.window, window.geometry.get_width() + 1, window.geometry.get_height() + 1,
|
||||
DefaultDepth(display, screen));
|
||||
if (window.back_buffer != None) {
|
||||
window.drawable = window.back_buffer;
|
||||
|
@ -1219,10 +1219,10 @@ void xdbe_swap_buffers() {
|
||||
void xpmdb_swap_buffers(void) {
|
||||
if (use_xpmdb.get(*state)) {
|
||||
XCopyArea(display, window.back_buffer, window.window, window.gc, 0, 0,
|
||||
window.width, window.height, 0, 0);
|
||||
window.geometry.get_width(), window.geometry.get_height(), 0, 0);
|
||||
XSetForeground(display, window.gc, 0);
|
||||
XFillRectangle(display, window.drawable, window.gc, 0, 0, window.width,
|
||||
window.height);
|
||||
XFillRectangle(display, window.drawable, window.gc, 0, 0, window.geometry.get_width(),
|
||||
window.geometry.get_height());
|
||||
XFlush(display);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user