1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@81 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-08-08 03:42:41 +00:00
parent c303dd406a
commit a7db5d98e7
2 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,7 @@
<kdevautoproject>
<general>
<activetarget>conky</activetarget>
<useconfiguration>debug-no-x</useconfiguration>
<useconfiguration>debug</useconfiguration>
</general>
<run>
<mainprogram>conky</mainprogram>

View File

@ -3872,7 +3872,9 @@ else if (strcasecmp(name, a) == 0 || strcasecmp(name, a) == 0)
#ifdef XDBE
CONF("double_buffer") {
use_xdbe = string_to_bool(value);
if (!own_window) {
use_xdbe = string_to_bool(value);
}
}
#endif
#ifdef X11
@ -4024,6 +4026,7 @@ else if (strcasecmp(name, a) == 0 || strcasecmp(name, a) == 0)
#ifdef OWN_WINDOW
CONF("own_window") {
own_window = string_to_bool(value);
use_xdbe = 0;
}
#endif
CONF("stippled_borders") {
@ -4284,6 +4287,7 @@ int main(int argc, char **argv)
#ifdef OWN_WINDOW
case 'o':
own_window = 1;
use_xdbe = 0;
break;
#endif
#ifdef XDBE