After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 130678 - window need to be resized at each start in order to see all mixer sliders
window need to be resized at each start in order to see all mixer sliders
Status: RESOLVED FIXED
Product: gnome-media
Classification: Deprecated
Component: general
unspecified
Other other
: High trivial
: ---
Assigned To: gnome media maintainers
gnome media maintainers
: 134330 (view as bug list)
Depends on:
Blocks: 134328
 
 
Reported: 2004-01-04 10:17 UTC by Serge Eric Thiam
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Serge Eric Thiam 2004-01-06 10:51:49 UTC
Distribution: Gentoo Base System version 1.4.3.12
Package: gnome-media
Severity: minor
Version: GNOME
      2
   .
      5
   .
      2
    2.5.x
Gnome-Distributor: 
      Gentoo Linux
   
Synopsis: window need to be resized at each start in order to see all mixer sliders
Bugzilla-Product: gnome-media
Bugzilla-Component: gnome-volume-control [was: gmix]
Bugzilla-Version: 2.5.x
Description:
Description of Problem: When starting gnome-volume-control, the size of
the window is too small and all the sliders are not shown. The user need
to resize the window at every start in order to display all the mixer
sliders.


Steps to reproduce the problem:
1. From the gnome-terminal shell prompt: gnome-volume-control 
2. OR
3. From the volume control panel applet: right-click-> Open Volume
Control

Actual Results:


Expected Results:


How often does this happen?


Additional Information:




------- Bug moved to this database by unknown@bugzilla.gnome.org 2004-01-06 05:51 -------

The original reporter (serge-eric.thiam@gmx.net) of this bug does not have an account here.
Reassigning to the exporter, unknown@bugzilla.gnome.org.
Reassigning to the default owner of the component, gnome-media-maint@bugzilla.gnome.org.

Comment 1 Luis Villa 2004-01-08 16:51:02 UTC
Yurk. Seriously ugly :) Still happens in HEAD; embarassing enough that
I'm marking it a 2.6.0 showstopper. Probably an easy fix for anyone
who knows this stuff, though.
Comment 2 Balamurali Viswanathan 2004-01-10 06:34:11 UTC
Following patch solves the problem. 

Index: gnome-media//gst-mixer/src/mixer.c
===================================================================
RCS file: /export/cvs/gnome-2.0/gnome-media/gst-mixer/src/mixer.c,v
retrieving revision 1.5
diff -p -u -5 -r1.5 mixer.c
--- gnome-media//gst-mixer/src/mixer.c  2003/12/21 12:29:59     1.5
+++ gnome-media//gst-mixer/src/mixer.c  2004/01/10 06:16:51
@@ -487,10 +487,11 @@ main (gint   argc,
                      NULL);
   register_stock_icons ();

   /* create main window + menus */
   window = gnome_app_new (PACKAGE, _("GStreamer Volume Control"));
+  gtk_window_set_default_size (GTK_WINDOW (window), 665, 250);
   gnome_app_create_menus (GNOME_APP (window), main_menu);

   /* Set appicon image */
   if ((file = gnome_program_locate_file (NULL,
GNOME_FILE_DOMAIN_APP_PIXMAP,
                                         PIX_DIR "/mixer.png", TRUE,
NULL))) {


Thanks
Comment 3 Luis Villa 2004-02-14 03:48:55 UTC
Would still be nice to get this one in, though I'm sure something that
actually tried to figure out how wide the sliders are instead of
hardcoding a large size would be good.
Comment 4 Christian Fredrik Kalager Schaller 2004-02-29 21:40:32 UTC
*** Bug 134330 has been marked as a duplicate of this bug. ***
Comment 5 Christian Fredrik Kalager Schaller 2004-02-29 21:43:22 UTC
I am not sure why having it fill the screen is considered better than
current behaviour. The problem is that modern soundcards have so many
channels that no matter how wide you make it, it is still probably to
narrow.
Comment 6 Ronald Bultje 2004-02-29 22:03:55 UTC
This was already fixed by another commit. The patch is similar to the
provided one, but slightly more intuitive and actually "right".