1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35: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> <kdevautoproject>
<general> <general>
<activetarget>conky</activetarget> <activetarget>conky</activetarget>
<useconfiguration>debug-no-x</useconfiguration> <useconfiguration>debug</useconfiguration>
</general> </general>
<run> <run>
<mainprogram>conky</mainprogram> <mainprogram>conky</mainprogram>

View File

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