changeset 4805:14da5037144f

changed default values: - made classic 1.3 as default skin. - do not use bitmap font. - do not show track number and separator lines in playlist window. - made one way scroller default. - made 8pt sans serif as default font for both main and playlist window.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 25 Nov 2008 16:03:56 +0900
parents cbaeab1f6378
children 563b6f48acd9
files src/audacious/audconfig.c src/audacious/legacy/ui_main.h src/audacious/legacy/ui_skin.h src/audacious/legacy/ui_skinselector.c
diffstat 4 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/audconfig.c	Tue Nov 25 03:33:46 2008 +0900
+++ b/src/audacious/audconfig.c	Tue Nov 25 16:03:56 2008 +0900
@@ -77,7 +77,7 @@
     .convert_underscore = TRUE,
     .convert_twenty = TRUE,            /* convert %20 */
     .convert_slash = TRUE,
-    .show_numbers_in_pl = TRUE,
+    .show_numbers_in_pl = FALSE,
     .snap_windows = TRUE,
     .save_window_position = TRUE,
     .dim_titlebar = TRUE,
@@ -96,7 +96,7 @@
     .use_backslash_as_dir_delimiter = FALSE,
     .random_skin_on_play = FALSE,
     .use_fontsets = FALSE,
-    .mainwin_use_bitmapfont = TRUE,
+    .mainwin_use_bitmapfont = FALSE,
     .allow_broken_skins = FALSE,
     .close_dialog_open = TRUE,
     .close_dialog_add = TRUE,
@@ -137,7 +137,7 @@
     .scroll_pl_by = 3,
     .resume_playback_on_startup = FALSE,
     .resume_playback_on_startup_time = -1,
-    .show_separator_in_pl = TRUE,
+    .show_separator_in_pl = FALSE,
     .chardet_detector = NULL,
     .chardet_fallback = NULL,
     .output_buffer_size = 500,
@@ -155,7 +155,7 @@
     .colorize_r = 255, .colorize_g = 255, .colorize_b = 255,
     .filepopup_showprogressbar = TRUE,
     .close_jtf_dialog = TRUE,          /* close jtf dialog on jump */
-    .twoway_scroll = TRUE,             /* use back and forth scroll */
+    .twoway_scroll = FALSE,            /* use back and forth scroll */
     .software_volume_control = FALSE,
     .warn_about_broken_gtk_engines = TRUE,
     .disable_inline_gtk = FALSE,       /* disable inline themes */
@@ -666,7 +666,7 @@
     }
 
     cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp);
-    
+
     /* RG settings */
     cfg_db_set_float(db, NULL, "replay_gain_preamp", cfg.replay_gain_preamp);
     cfg_db_set_float(db, NULL, "default_gain",       cfg.default_gain);
--- a/src/audacious/legacy/ui_main.h	Tue Nov 25 03:33:46 2008 +0900
+++ b/src/audacious/legacy/ui_main.h	Tue Nov 25 16:03:56 2008 +0900
@@ -41,7 +41,7 @@
 #define MAINWIN_DEFAULT_POS_X    20
 #define MAINWIN_DEFAULT_POS_Y    20
 
-#define MAINWIN_DEFAULT_FONT     "Sans Bold 9"
+#define MAINWIN_DEFAULT_FONT     "Sans Bold 8"
 
 
 typedef enum {
@@ -51,7 +51,7 @@
 
 enum {
     MAINWIN_GENERAL_ABOUT,
-    
+
     MAINWIN_GENERAL_PLAYFILE,
     MAINWIN_GENERAL_PLAYLOCATION,
 
--- a/src/audacious/legacy/ui_skin.h	Tue Nov 25 03:33:46 2008 +0900
+++ b/src/audacious/legacy/ui_skin.h	Tue Nov 25 16:03:56 2008 +0900
@@ -33,7 +33,7 @@
 #include "audconfig.h"
 
 #define BMP_DEFAULT_SKIN_PATH \
-  DATA_DIR G_DIR_SEPARATOR_S "Skins" G_DIR_SEPARATOR_S "Default"
+  DATA_DIR G_DIR_SEPARATOR_S "Skins" G_DIR_SEPARATOR_S "Classic1.3"
 
 
 typedef enum {
--- a/src/audacious/legacy/ui_skinselector.c	Tue Nov 25 03:33:46 2008 +0900
+++ b/src/audacious/legacy/ui_skinselector.c	Tue Nov 25 16:03:56 2008 +0900
@@ -372,7 +372,7 @@
     GtkTreeSelection *selection;
 
     gtk_widget_show_all(GTK_WIDGET(treeview));
-    
+
     gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE);
     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treeview), FALSE);