diff src/skins/skins_cfg.c @ 2584:c9e40418a74c

use plugin's own config
author Tomasz Mon <desowin@gmail.com>
date Tue, 20 May 2008 19:41:12 +0200
parents 294232665cb0
children 88009fb3fbe6
line wrap: on
line diff
--- a/src/skins/skins_cfg.c	Tue May 20 16:34:06 2008 +0200
+++ b/src/skins/skins_cfg.c	Tue May 20 19:41:12 2008 +0200
@@ -40,6 +40,8 @@
     .dim_titlebar = TRUE,
     .show_wm_decorations = FALSE,
     .easy_move = TRUE,
+    .allow_broken_skins = FALSE,
+    .disable_inline_gtk = FALSE,
     .timer_mode = 0,
     .vis_type = VIS_ANALYZER,
     .analyzer_mode = ANALYZER_NORMAL,
@@ -65,6 +67,7 @@
     .snap_distance = 10,
     .snap_windows = TRUE,
     .save_window_position = TRUE,
+    .analyzer_peaks = TRUE,
 };
 
 typedef struct skins_cfg_boolent_t {
@@ -84,8 +87,11 @@
     {"dim_titlebar", &config.dim_titlebar, TRUE},
     {"show_wm_decorations", &config.show_wm_decorations, TRUE},
     {"easy_move", &config.easy_move, TRUE},
+    {"allow_broken_skins", &config.allow_broken_skins, TRUE},
+    {"disable_inline_gtk", &config.disable_inline_gtk, TRUE},
     {"snap_windows", &config.snap_windows, TRUE},
     {"save_window_positions", &config.save_window_position, TRUE},
+    {"analyzer_peaks", &config.analyzer_peaks, TRUE},
 };
 
 static gint ncfgbent = G_N_ELEMENTS(skins_boolents);