changeset 2208:76b040158f94 trunk

[svn] - Center new windows so they don't get cut off by the edge of the screen.
author nhjm449
date Sat, 23 Dec 2006 23:38:02 -0800
parents a7ab1616ae38
children ec7b60e91a14
files ChangeLog audacious/glade/fileinfo.glade audacious/playlist_manager.c
diffstat 3 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Dec 23 08:42:05 2006 -0800
+++ b/ChangeLog	Sat Dec 23 23:38:02 2006 -0800
@@ -1,3 +1,11 @@
+2006-12-23 16:42:05 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [3419]
+  - use relative links for this (FHS compliance)
+  
+  trunk/libaudacious/Makefile |    4 ++--
+  1 file changed, 2 insertions(+), 2 deletions(-)
+
+
 2006-12-23 14:04:14 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
   revision [3417]
   - file_path should be dirname.
--- a/audacious/glade/fileinfo.glade	Sat Dec 23 08:42:05 2006 -0800
+++ b/audacious/glade/fileinfo.glade	Sat Dec 23 23:38:02 2006 -0800
@@ -7,7 +7,7 @@
   <property name="border_width">6</property>
   <property name="title" translatable="yes">Track Information</property>
   <property name="type">GTK_WINDOW_TOPLEVEL</property>
-  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="window_position">GTK_WIN_POS_CENTER</property>
   <property name="modal">False</property>
   <property name="resizable">False</property>
   <property name="destroy_with_parent">False</property>
--- a/audacious/playlist_manager.c	Sat Dec 23 08:42:05 2006 -0800
+++ b/audacious/playlist_manager.c	Sat Dec 23 23:38:02 2006 -0800
@@ -1,4 +1,4 @@
-/*  Audacious - Cross-platform multimedia player
+/* Audacious - Cross-platform multimedia player
  *  Copyright (C) 2005-2006  Audacious development team.
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -176,6 +176,7 @@
   playman_win = gtk_window_new( GTK_WINDOW_TOPLEVEL );
   gtk_window_set_type_hint( GTK_WINDOW(playman_win), GDK_WINDOW_TYPE_HINT_DIALOG );
   gtk_window_set_transient_for( GTK_WINDOW(playman_win) , GTK_WINDOW(mainwin) );
+  gtk_window_set_position( GTK_WINDOW(playman_win), GTK_WIN_POS_CENTER );
   gtk_window_set_title( GTK_WINDOW(playman_win), _("Playlist Manager") );
   gtk_container_set_border_width( GTK_CONTAINER(playman_win), 10 );
   g_signal_connect( G_OBJECT(playman_win) , "destroy" ,