How do I resize pinned tabs/deal with tab group problems in Firefox 22?

With the automatic update to Firefox 22, my pinned tabs have ballooned in size; not only does this look horrible, but it reduces the real estate available for other tabs. While NoSquint has sorted the issue with websites randomly resizing themselves, everything else (add-on menu, toolbar icons) has also increased in size, which affects what can be displayed.
Another problem with 22 is that my tab groups are no longer behaving normally: I click on one group and another group moves around the screen, typically jumping behind the original group I clicked on. Any suggestions for how to improve these problems are much appreciated.

hello, firefox 22 is now respecting the pixel density you've set on a system level in the windows control panel > appearance > display. more information about that is availbale at http://windows.microsoft.com/en-us/windows7/make-the-text-on-your-screen-larger-or-smaller
if you want to set the text size/pixel density in firefox different from that of your system's settings like it was handled in prior versions, enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''layout.css.devPixelsPerPx'''. double-click it and change its value to '''1.0''' (or any other zoom factor that fits your purpose; 0.8 equals 80%, 1.15 is 115% and so on..., -1.0 is the default value and will adhere to the system settings).

Similar Messages

  • How is the best way to deal with duplicate photos

    I am using a new retina 27" iMac 16gb ram OS X 10.10.1
    Aperture 3.6
    What is the best way to deal with duplicates that get in Aperture Vaults
    I have used Gemini and it finds duplicates, but I have no way of telling if the original are still there.
    I don't want to go through 15000 photos to try to find the duplicate.
    Thanks Charlie

    You mean - one image in a vault, one in a library?  Or duplicates in the same library?
    Photo Sweeper can scan several libraries or folders at the same time and display the duplicates side by side to let you pick which to keep.  You can define rules to mark photos for automatic deletion as well.
    http://overmacs.com/photosweeper.html

  • Tab canvas with required fields (problem)

    hi,
    I am using tab canvas with 5 tabs with diff blocks.
    receive
    issue
    adjust
    return
    view
    some fields are required in all tabs.
    when i run the form and in RETURN TAB and enter some data and click the save button the cursor goes to receive tab and focus the required fields with a message
    FIELD MUST BE ENTER
    same for issue tab also...
    i dont want to enter any thing there ..
    how i manage it
    thanks

    Not sure if I understand you correctly. You say some fields are required in all tabs, but also that you 'don't want to enter anything here'. Do you mean that the fields are required, but only if you're entering data on that specific tab? I.e. you don't have to enter all of the tabs.
    If that's the case, are all the tabs based on the same block, or different blocks?

  • Best way to deal with Storm 9530 problems?

    Hi there,
    i'm having numerous problems with my Storm from freezeups to random reboots to an inability to connect via USB (Windows reports a problem with the connection).  Before I replace the phone I thought I would restore the phone to factory defaults to see if that solves any problems.
    Is that the best way to deal with these problems?  Can someone please point out the best way to backup my data (given that I can't connect via USB anymore) and restore the phone?
    Thanks in advance.
    [L] 

    Anyone?
    [L] 

  • How do I get the startup page with tabs like "tools" etc.?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have re-installed Firefox but how can I get a normal startup page with a normal toolbar (tabs like "Tools", slot for writing web address etc.)?
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; sv-SE; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-np-mswmp
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Shockwave Flash 10.0 r45
    *iTunes Detector Plug-in
    *CANON iMAGE GATEWAY Album Plugin Utility Module
    *Picasa plugin
    *4.0.50524.0
    *Office Live Update v1.5
    *Virtual Earth 3D 4.00090316005 plugin for Mozilla
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Nexus Personal Plug-Ins
    *Voddler Web Plugin
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers

    In Firefox 3.6 and later on Windows you can hide the menu bar via "View > Toolbars" or via the right click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the menu bar temporarily.
    Go to "View > Toolbars" or right-click the menu bar or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also [[Menu bar is missing]] and http://kb.mozillazine.org/Toolbar_customization

  • How can we deal with Button group

    hi,
    i was wondering how can we add a listener to the buttons in abutton group,i have a buttongroup,2 textfields for totals and button"submit" and "update".what i wanted is when i press on submit,then teh button taht was selcted in buttongroup should be taken stored and if its male add 1 to maletotal ,or femaltotaland dispalyed in teh textfileds below and when i press "update" the item taht was selected should be wriiten in a file "gen" with the totals too..for thsi purpose i w rote the code as....
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import javax.swing.BoxLayout.*;
    import java.text.*;
    import java.util.*;
    public class gender1 extends JFrame implements ActionListener
    JPanel buttonpanel=new JPanel(),
    private JPanel mainpanel=new JPanel(new BorderLayout());
    private JButton Submit=new JButton("SUBMIT");
    private JButton Update=new JButton("Update");
    private JRadioButton gender[]=new JRadioButton[genderOptions];
    private String genderlabels[]={"female","male"};
    private JTextField malefield=new JTextField(10),
    femalefield=new JTextField(10);
    public gender1()
              this.getContentPane().setLayout(new BorderLayout());
              updatetotal();
              initGender();
    public void updatetotal()
    //adding buttons and actionlisteners
    lpanel.add(Update);
    Update.addActionListener(this);
    lpanel.add(Submit);
    Submit.addActionListener(this);
    //adding textfileds for totals
    lpanel.add(totmale);
    lpanel.add(totfemale);
    mainpanel.add(lpanel,"Center");
    public void initGender()
    buttonpanel.setBackground(Color.red.darker());
         buttonpanel.setLayout(new BoxLayout(buttonpanel,BoxLayout.X_AXIS));
         for (int k = 0;k < genderOptions;k++)
         gender[k]=new JRadioButton(genderlabels[k]);
    buttonpanel.add(gender[k]);
    optGroup1.add(gender[k]);
         mainpanel.add(buttonpanel);
         gender[0].setSelected(true);
    //get teh one button which is selected
    gender[].addActionlistener(this);
    public void actionPerformed(ActionEvent e)
    if (e.getSource==Update)
    if(gender[].getSelected()=="male")
    int mtot,ftot=0
    mtot=tot+1;
         int maletotal=maletotal+mtot;
    else
    ftot=ftot+1;
    int femaletotal=femaletotal+ftot;
    femalefield=totfemale.setText(femaletotal);
    malefield=totmale.setText(maletotal);
    if(e.getSource==submit)
    DataOutputStream dos=new DataOutputStream(FileOutputStream(gen))
    dos.writeInt(maletotal);
    dos.writeInt(femaletotal);
    public static void main(String s[])
    gender c=new gender();
    c.setSize(800,600);
    c.setVisible(true);
    c.addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e)
    { System.exit(0);
    Is this the way to deal it?????

    I use something like this in one of my GUI's
    boolean female = false;
    add a listener to the radio buttons and toggle the flag between true and false;
    set the radio button to male as selected or female which ever is pc at the moment.
    Jim

  • Hi how to enable my safari browse website with TAB? My iPad vision is 4.3.5

    As I found it is a difference of the way to browse the website between my iPad which purchased 1 mth ago and my friends's newly one. Just want to know how can I enable the TAB function of Safari on my iPad so that works convenience. Is that something about vision? My iPad is 4.3.5 and if it can, I do no want to upgrade to IOS 5 as it got a lot of crash issue.  Hope some one can help me. thank u

    Most people have no problem with IOS5.
    Those who seek help here are the minority. Don't forget there are millions of iPad sold.

  • Organizational Management- Dealing with tab pages

    Hello Experts,
    I need to include tab page for account assignment to be displayed for object type P "Person". I've used view T77OCTABUS in order to include this tab page, the following record was created.
    Scenario: OME0
    Object type: P
    Tab page: ACCNTNG
    Sequence: 15
    Program Name:SAPLRHOMDETAIL_APPL
    Screen Number: 0504
    FM for icons: HRFPM_ADT_FRAMEWORK_TABS
    But the problem is only the part of cost assignment is shown without showing the part of validity dates on the screen. And when checking the technical information for the field of start and end dates, different program name and screen number is shown and when changing the previous record with the new program name and screen number, only the start and end dates are shown.
    Please Help me on this issue so that both the validity dates and the part of cost assignment is shown.
    Your help would be highly appreciated.
    Regards,

    Hi..Sally Ahmad Mahmud
    please would explain me the actual scenario..why you need to configure this..?
    Bashir Ahmadani

  • How to deal with video card problem on Thinkpad E420

    thinkpad E420 has GMA and a Special video card ATI READON HD 6630
    I installed Archlinux and xf86-video-intel
    then I go to the AMD offical web site and download video driver for linux64bit 11.8
    after I installed it
    I cannt login
    and report me the gnome was crashed
    can anybody help me with this problem?
    how to make the two card work
    or to disable my ATI card to cold down my laptop
    thanks ^^

    Maybe not out of the woods yet. I ordered a new video card and installed it today in slot 1 after removing the original one. When booting up I thought I was pressing the PRAM reset but had mistakenly held the "control" key down as well. Needless to say - no monitor start-up.
    After restarting a couple of times to no avail I realized my mistake and the next time correctly held the CommandOption+PR keys but interestingly it took a couple of restart chimes before it correctly brought up a gray screen. I then didn't release the keys in time and the next restart chimes the monitor stayed black - after one or two more continuous restart chimes I got the gray screen and everything booted up OK. I no longer have an error message for PCI Cards at System Profiler.
    But given that it seemed that the PRAM reset didn't consistently activate a signal to the monitor, I am a little anxious that I have been chasing the wrong problem - that maybe it's been a PRAM or other problem all along and not necessarily the monitor. I do have that case where the System Profiler gave me an error message for the PCI Cards selection under Hardware in System Profiler, but I'm left wondering if problem solved.
    Any easy way to debug PRAM - where is PRAM data stored?
    I will report back if I get another black screen on restart or wake up...

  • How can I deal with this installing problem????

    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW050 ... WARNING: DW016, DW024 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 7 error(s), 3 warning(s)
    WARNING: DW024: The payload: {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0 requires a UI parent with following specification:
    Family: Photoshop
    ProductName: Adobe Photoshop CS6 Core_x64
    This parent relationship is not satisfied, because this payload is not present in this session.
    WARNING: DW016: NOTE: Cannot set action to the payload {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0 as it is already upgraded by the payload {8706963D-5F48-47CC-998B-DAB70B089DB8} Suite Shared Configuration CS6 3.0.0.0
    WARNING: DW016: NOTE: Cannot set action to the payload {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0 as it is already upgraded by the payload {8706963D-5F48-47CC-998B-DAB70B089DB8} Suite Shared Configuration CS6 3.0.0.0
    ----------- Payload: {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1 -----------
    ERROR: Failed to repair Microsoft Visual C++ 2010 Redistributable Package (x86). Please try repairing it by double clicking on the executable at "D:\AdobePS\Adobe Photoshop CS6 Extended\Adobe CS6\payloads\Microsoft VC 2010 Redist (x86)\vcredist_x86.exe", or download and install the latest Microsoft Visual C++ 2010 Redistributable Package (x86) from Microsoft website - www.microsoft.com
    ----------- Payload: {7E91BB17-16A1-42CE-9502-D6C98BE04920} PDF Settings CS6 11.0.0.0 -----------
    ERROR: AMT Operation failed with status code 1 for file C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\AdobeHunspellPlugin\AMT\component.xml
    ERROR: AMT Operation failed with status code 1 for file C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\WRLiloPlugin1.3\AMT\component.xml
    ERROR: AMT Operation failed with status code 1 for file C:\Program Files\Common Files\Adobe\FontsRecommended\2.0\AMT\component.xml
    ERROR: AMT Operation failed with status code 1 for file C:\Program Files (x86)\Adobe\Adobe Bridge CS6\AMT\application.xml
    ERROR: AMT Operation failed with status code 1 for file C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\AMT\application.xml
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Microsoft Visual C++ 2010 Redistributable Package (x86): Install failed

    http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Mylenium

  • HD full ?! Really how many more issues must I deal with ? My computer is only a year old

    So word is giving me an error msg that it cannot save to Machintosh's HD because it is full ... I have 711 GBs out of my 800 GBs free ! How can it be full !!!! Im not sure whether the problem is from my computer or my microsoft office ,, but I have a strong feeling its my computer ! I attached a picture of the error msg. What am i suppose to do ? this is getting frustrating , my computer has been giving me trouble since day one and apple did nothing about it and here I am one year later posting three different problems in less than a week !
    Any help will be very much appreciated !

    Try a post in the Office for Mac forums.
    We do mostly Apple software and hardware here.
    DALE

  • How to solve NaN error, while dealing with multiplication of double values

    i am getting NaN error in the program.
    consider this following code
    for (j=0;j<nh;j++)
    sum = 0.0;
    for (i=0;i<ni;i++){ sum = sum + (ai[i] * wi[i][j]) ;}
    //System.out.println(sum);
    ah[j] = sigmoid(sum);
    public static float sigmoid(float x)
    return ((Math.exp(x)- Math.exp(-x)) / (Math.exp(x)+Math.exp(-x)));
    ni = 2500-- no of input nodes;
    nh = 5000 -- no of hidden nodes;
    i am getting problem in calculating the "sum" value. its returning NaN for "sum".
    here a[i] values are around some +/- 0.XXXXXXXX upto 14 digits
    and wi[j][j] values are also +/- 0.XXXXXX upto 14 digits.
    all values are of datatype double.
    i was stucked up with this problem. what i am to do?
    give me suggestions..
    please reply me

    This can occur with double divisions. I wrote a small method that solves this:
         * Set double values that have a value of 'NaN' or 'Infinity' to 0.0. This can happen when dividing double values as they
         * don't cause a DivisionByZeroException.
         * @param value Double value to check.
         * @return Input value with 'NaN' and 'Infinity' set to 0.0.
        static public double resetNaN(final double value, final double resetValue) {
            return (Double.isNaN(value) || Double.isInfinite(value)) ? resetValue : value;
        }//resetNaN()

  • First time dealing with Greenshift/Gamma problem in Quicktime/Safari

    I've been editing video on a Mac and in Final Cut Pro since version 2  (I am transitioning to Adobe Premiere Pro so don't judge )and this is the first time I've had a huge problem with a shift in color from what I see on the canvas to what is exported - and the first time I've noticed that that problem/shift only happens when the footage is viewed in an Apple program (Quicktime or Safari when uploaded to Vimeo). Opening the footage in VLC or viewing the upload on Firefox? Looks gorgeous. But on Safari or Quicktime? Colors are muted and have a greenish cast.
    In doing some research, especially on various Adobe forums, I've learned that this is a scarily widespread problem (and learned the term 'QuiRktime') so I'm suprised I haven't had this problem before - it may be due to the lovely taupe/grey outfits, skin tones, etc that I got to shoot.
    The footage is for website/computer usage so looking at it on my monitor should be a good indicator. And I've had others look at the Vimeo upload and some have commented on the green cast (so are probably Mac people too...).
    So I'm not sure what to do - how best to give it to the client.
    Workflow: footage is ProRes HQ, shot in 1080, shrunk to 720 to make 'artificial second cam close-up' (don't ask...). Edited in Final Cut Pro, but I've been going back and forth with it in Adobe Premiere Pro to try and tweak the picture color and contrast, as I've been liking the filters in Premiere better than FCP lately, but had some pre-built items I needed to use in FCP as I haven't gotten around to re-building replacements in After Effects.
    I've exported it as ProRes and used Adobe Media Encoder to compress (been using both the Vimeo 720 preset - and tried upping the bitrate, setting quality to max rendering - and the Broadcast 720 preset).
    Only time I've gotten it to look good when opening on Quicktime is when I export it as Animation versus ProRes, but the resulting file is 12X (and thus 12GB) so too large to upload or burn on disc (and compressing it for web usage from that file gives identical results to simply compressing the ProRes file in the first place or exporting directly from Premiere Pro to h.264)
    So my question is...what is the best way to export this footage to get the right color cast in Quicktime based computers and non-Quicktime using computers.
    I've uploaded a screenshot of the footage opened in Safari and Quicktime (left side) and Firefox and VLC (right side) to Flikr
    http://www.flickr.com/photos/44843717@N04/8300689101/
    Thanks for any help  you can give

    The footage is for website/computer usage so looking at it on my monitor should be a good indicator.
    It actually doesn't matter where the footage will end up.  The idea is to see the image accurately while grading, and for that you will need a calibrated, external TV.  You just can't use a normal computer monitor or software media players for this.

  • How can you get Apple's attention with a software problem?

    From the lack of responses to my posting regarding the YahooSync.exe file,
    http://discussions.apple.com/thread.jspa?threadID=1778225&tstart=15
    I wonder how one gets the attention of Apple and the iTunes programmers with a legitimate software issue such as this? I can't seem to find anything under "Contact Us" whereby I can submit input.

    http://www.apple.com/feedback/itunesapp.html

  • Trying to deal with a recurrent problem regarding my one year old Macbook Pro

    I have restored my hard drive three times and already took my Macbook Pro to a check up where it got supposedly repaired... What should I do? I don't download anything odd and I haven't the slightest idea of what's going on... Help would be appreciated.
    But really, I freak out everytime it stops turning on and today it shut down on its own, those error reports aren't getting me any help either and I am a clueless sixteen year old girl that had less issues with her 2007 Windows... Or maybe I'm just freaking out and get too scared because this thing cost me and my parents quite a lot.
    So, explain this to me like am 5.

    AkiraScrolls wrote: I have restored my hard drive three times and already took my Macbook Pro to a check up where it got supposedly repaired... What should I do?
    Take the computer right back to the repair shop for them to fix it like they should have done in the first place.  You should have gotten a case number.  You should not be charged for the repair work under the same case number.  Were the original repairs done under warranty?  Do you have Apple Care?  If yes to the above, call Apple Care and explain the situation to them.  Or Call Apple Customer Relations (1-800) 275-2273.  Wait for a human to come on the line and ask politely and firmly that you want to be transferred over to the Customer Relations department.

Maybe you are looking for

  • Customer Open Item clearing Line Layout

    Hi the user uses F-32 for customer open item clearing and the following are the fields are available in the line layout. Assignment, reference, Doc no, doc type,posting period, doc date, posting date,gross amt,  cash discount, cash Discount %. Along

  • How to get the SQL file name in SQL*plus

    hi all,      I have created two sql file at C drive as "c:\Createtable.sql" and "c:\Deletetable.sql" afterwards i open C:\>sqlplus SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jan 30 11:37:10 2008 Copyright (c) 1982, 2005, Oracle.  All rights res

  • One database user taking more time to connect

    Hi All, I have a question, I have a database say 500GB and I have around 50 schemas in this database.But there is one User that takes more than normal time to connect to the database. What can be the reason for this and what should be my apprach to l

  • Is SQL Server 2008 Express suitable?

    Hi friends, Is the Microsoft SQL Server 2008 Express version suitable and compatible with SAP Business One 8.81 or future versions? Thank you in advance. Best Regards, Kanu Pathak

  • Exporting

    I seem to have a bug in my Lightroom 5.3 program in that I am no longer able to export photos either to my desktop or to a portable stick. I'm now getting the following message each time I try to export any photos Unable to Export An internal error h