Bug: Panel widths not sticking?

This may be a bug, but I haven't come across any other messages mentioning the problem.
The panel widths don't seem to stick between sessions. For example, I open Lightroom, switch to the Develop module, then drag the panel width to the left to make it wider. So far so good, and the new, wider width sticks for that session even after switching between other modules.
However, if I close then reopen Lightroom and go to the Develop module, my previous width "flashes" briefly then goes back to the default narrower width.
I'm using Lightroom 1.0 on a P4 3GHz, 2GB RAM, and XP Home.

That would be Ilver, if its Canines are longggg....
Don
Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
http://donricklin.blogspot.com/

Similar Messages

  • Another bug messaging settings not sticking

    everytime i reboot or check the message save location is set back to c drive.. need this fixed asap also as there is not enought memory on the c drive .. i also reset it to the e drive.

    hmm i had that happen to me all the time on v10....but not on v11...i would recommend reinstalling firmware, back up all your stuff prior but i would go that route then rigth after update do a *#7370#  default code is 12345 and see if it sorts things out for you.
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Properties panel not  "sticking" CS4

    Somehow my property panel is "loose" and not sticking to the bottom. Here's a screenshot if that helps. How do I get it back in place so it's not floating and it stretches across the bottom of the working area automatically? Thanks so much in advance!

    I've had this problem, too—with the Properties panel, the Tools, or the Document window. Once they get moved by hand, they never seem to coordinate with the other panels properly.
    My only solution has been to reselect a default Workspace (from the upper-right of the screen, or at the bottom of the Windows menu), which resets the panels.

  • [Bug?] Defer Panel Update not working when changing scale property

    Hi,
    I found that Defer Panel Update [when True] does not work properly when changing the scale fit property of an intensity graph.
    Try the VI.
    When Defer Panel Update is True, and you change the Numeric controls, the Intensity graph is not updated (as expected).
    But now change the "Z Scale.Scale Fit" button and.... the Intensity graph is updated (only the Z-color, not the axis).
    This looks to be a bug to me!
    Nicolas
    Attachments:
    [Bug] Defer Panel Update not working when changing scale property.vi ‏27 KB

    Hi Nicolas,
    This indeed looks like a bug. I will do more research on it and file a bug report if it's not already filed.  Thank you for posting this information!
    Yi Y.
    Applications Engineer
    National Instruments
    http://www.ni.com/support

  • Panel does not start automatically in Gnome 2.24.3

    Since Gnome 2.24.3, the Gnome Panel does not start automatically.
    I had to manualy add it to the startup group via "Sessions" in order to force it to start when login finishes.
    Does anybody has the same behavior?
    Should I report it as a bug?

    That may be true but it is a real pain since when it happens the only way to recover is to terminate all of the iTunes modules with task manager and start it manually. It also leaves the IPOD in a state that says do not disconnect. You can disconnect since nothing is really happening but there is no excuse for this not to start much faster. When you have multiple users it is a real pain. It ought to be able to either end when finished or better yet allow multiple users simultaneously updating from different libraries.
    I guess i will just have to get in the habit of treating it as a single user and start and stop it every time I need it and be suer not to let it run. Not nice because that means waiting for larger Podcast downloads instead of having there ready for me when I sign on my computer.

  • Changes made in Book Module do not "stick" when the book has been duplicated

    Lr 5.2 stand-alone version (not CC) – Win 7 64-bit
    I had made a duplicate of the book (right-click the book Collection and select <Duplicate>). Then I made changes to the original book – changed the font for captions and for body; changed the wording of the body text; changed the padding for images. At some point in the process these changes did not '”stick” anymore. The changes were visible as long as I worked in the Book Module. But the changes were gone and the book reverted to the previous state as soon as I went to the Library and back to the Book Module. Same thing happened when I closed Lr and re-opened it.
    Replacing the Preference File did not change this behavior. But when I deleted the duplicate book the behavior of Lr went back to “normal”, i.e. the changes now “stick”.
    In my opinion there must be a bug that prevents that changes “stick” when after a Duplicate of a book has been created.

    You're not the only one using TCS1. I, too, must endure Adobe's initial FM-RH Integration software offering with its limited patches and multiple workarounds (I don't sound bitter, do I?).
    Do you have the latest patches?
    When you say you modified titles in your FM book, did you modify the document titles from the book file, thereby changing the file names? Or did you change heading styles within a FM document/chapter?
    If you changed the file name in any way, verify in the RH Project Manager that all links to the referenced FM files are not broken. If any file links are broken, you can resolve them in the RH Project Manager.
    Changing a heading name within a FM document should not cause you this grief, as long as the file links between FM and RH remain intact.
    As I don't know your level of experience, I'll make an suggestion to someone new to FM-RH integration (although, since you're using TCS1, I presume you are an experienced user). When updating the RH project, are you selecting Force Update or Update All. Force Update applies changes made in FM to your RH project. Update All only applies changes made in RH.
    Also, RH has a feature that allows you to select specific topics to ignore when running a Force Update (i.e. changes in FM won't be applied to the selected topics). Make sure no topics are selected for this purpose.
    If all else fails (and I don't recommend this unless you tried every other possibility), delete and re-import the book. There's another thread that helps you through this process without you having to manually reapply your settings.
    Good luck!

  • My moving square leaving the boundaries of the panel is not noticed by Java

    Could someone please tell me why neither System.out.println("Out of bounds!") nor JOptionPane.showMessageDialog(null, "Out of bounds!") get reached?
    Here is the code:
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class Bounds extends JPanel
        int counter = 0, x = 50, y = 50, width = 20, height = 20;
        public Bounds()
            JFrame frame = new JFrame();
            frame.setVisible(true);
            frame.setSize(800,600);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            ActionListener listener = new graphicsListener();
            Timer timer = new Timer(2000, listener);
            timer.start();
        protected void paintComponent(Graphics g)
            super.paintComponent(g); // so the background gets refreshed
            g.drawRect(x+counter , y+counter, width+counter, height+counter);
            counter+=10;
            System.out.println("Panel width: " + getWidth() + " Panel height: " + getHeight());
            if(x+width >= getWidth() || y+height >= getHeight())
                System.out.println("Out of bounds!");
                JOptionPane.showMessageDialog(null, "Out of bounds!");
        public class graphicsListener implements ActionListener
            public void actionPerformed(ActionEvent event)
                repaint();
        public static void main(String[] args)
            new Bounds();
    }Any help identifying the problem would be greatly appreciated!
    Thanks in advance!

    I changed it to this but still don't see why it's launching infinite JOptionPane windows:
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class Bounds extends JPanel
        int x = 50, y = 50, width = 20, height = 20;
        Timer timer;
        public Bounds()
            JFrame frame = new JFrame();
            frame.setVisible(true);
            frame.setSize(800,600);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            ActionListener listener = new graphicsListener();
            timer = new Timer(200, listener);
            timer.start();
        protected void paintComponent(Graphics g)
            super.paintComponent(g); // so that the background gets refreshed
            g.drawRect(x, y, width, height);
            System.out.println("Panel width: " + getWidth() + " Panel height: " + getHeight());
            System.out.println("x+width = " + (x+width));
            System.out.println("y+height = " + (y+height));
            if(x+width >= getWidth() || y+height >= getHeight())
                System.out.println("Out of bounds!");
                JOptionPane.showMessageDialog(null, "Out of bounds!");
                timer.stop(); // Why isn't this having an effect?
            x+=10;
            y+=10;
            width+=20;
            height+=20;
        public class graphicsListener implements ActionListener
            public void actionPerformed(ActionEvent event)
                repaint();
        public static void main(String[] args)
            new Bounds();
    }As indicated in the line that says: timer.stop(), I suspected that the timer kept invoking graphicsListener but I can't actually find the bug.

  • Update new Folio Builder Panel but not the Folio Producer Tools?

    Hi Guys
    I was prompted to update the Builder Panel so I have done this now. I have read some older posts from last week about the new producer tools with new interactivity inside MSOs.
    Is everybody still having problems with this update or has the bug been fixed now?
    I'm not on such a tight deadline but I don't want any problems! Should I hold fire on updating the Producer tools?
    Cheers
    Gemma

    You can update the viewer builder panel independent from producer tools.
    So you can stay on version 17 of the tools but you need the current folio
    builder panel.
    —Johannes
    (mobil gesendet)
    Am 31.01.2012 12:47 schrieb "BHPforum" <[email protected]>:
       Update new Folio Builder Panel but not the Folio Producer Tools? created by
    BHPforum <http://forums.adobe.com/people/BHPforum> in *Digital Publishing
    Suite* - View the full discussion<http://forums.adobe.com/message/4175766#4175766>

  • I am really pisssed off at two characteristics of Firefox 4: Size and position do not stick, and view menu selections do not stick from one use to the next.

    I am really pissed off at two characteristics of Firefox 4: 1) Toolbar selections don't stick and 2) firefox window position and size settings do not stick from one use to the next.
    The Bookmarks toolbar is the selection that does not stick, and Firefox, even though I set it to the size and position I want every time I use the program, always loads flush left, full top to botton, and about 1/3 of the width of the screen EVERY TIME it loads. These two characteristics are extreme pains in the ass.

    This problem occurs on the Juno webmail site?
    I assume you are doing something different than just correcting the squiggly red underlined words. How are you spell-checking the email: using an add-on or using a feature of the Juno webmail site? If it's an add-on, which one is it?

  • Photoshop and CS6 Epson Page Settings do not stick

    I am using Photoshop Extended CS6 on a Mac with OS 10.7.4 and the latest driver for an Epson 7800 just downloaded from the Epson site. In the Print Settings dialogue "Page Setup" defaults to "Roll Paper - Banner" and any other selection such as sheet does not stick when saving a printing preset. Once selected, it appears to stay for one print, but returns to roll paper so that it needs to be reset with every print.
    Has anyone else experienced this problem and if so, have you found a solution?
    Thanks,
    Ed

    Ed,
    I noticed the same thing with the margins, however, as I use mostly large sheet sizes (I had the paper curl of rolls) that does not affect the lack of a sticky setting for "sheet" when I save a preset.
    I had three conversations this week with Epson Technical Support. The last one being today with Ron who took control of my desktop and found out for himself exactly what I was saying. He then spoke to others in his department and came back with the response, "apparently this is an issue we are aware of and it will be fixed." "When," I asked. He didn't know and said to just keep checking for an update their drivers page.
    Personally, I will not hold my breath. I would suspect that in the grand scheme of things, this bug is of very low priority.
    Ed

  • Strange Content Viewer problem: downloads do not 'stick'

    I had a folio that  needed to be downloaded it appeared after updating to the latest Content Viewer on my iPads (Retina, mini Retina and standard iPad2).
    For some reason after quiting Content Viewer on my iPads and starting the Content Viewer app again, tapping to see that folio resulted in a empty screen on my iPad. It seemed that Content Viewer app crashed.
    After quiting the app again and restarting the app , it said the folio was in the cloud. I needed to download again.
    From that point on you can repeat those steps again and again: download; read; close Content Viewer app; start Content Viewer app; read folio: empty and crash;  restart Content Viewer: folio gone from iPad and needs to be downloaded again. Repeat.
    I tried removing the downloaded version from the app and re-download: same result.
    I deleted the Content Viewer from my iPads and reinstalled from App Store: same result.
    I then completely rebuild the folio in InDesign under another CC account. Logged in on my iPad under that account, downloaded the rebuild folio... And I can repeat it all over again... The download does not 'stick' and crashes the Viewer app.
    Then I tried this with completly new fresh folios from fresh new InDesign pages... Same result!
    But... On my iPad2 it seems fine. On my Retina iPads it goes wrong. Also covers are missing and I see double entries (it shows already downloaded folios!).
    There are no renditions, just 1024 PDF file. Tried it with v26 and v29 compatibility, makes no difference.
    I am stumped... I have no clue where to even begin fixing this other than the steps I already took mentioned above...
    Could non-ACSII characters in the title be the cause ( it has a slash and copyright sign)? No, that seems to make no difference...
    Bug...?

    I'm still affected by this. What is the status?
    I have a folio with no upper ASCI characters in its name or any article names. created with Folio viewer version v26. My iPad has the latest ACV (3.4.5) on ipad Retina with IOS 7.1.
    Exactly the same symptoms same as described by others - After viewing my folio, if I close the ACV viewer with swipe up on IOS7 and I restart the ACV, I get a grey blank screen & crash, and have to close the app with Swipe up. When I restart ACV, the library updates and I must download the folio again. Then cycle starts again...after download competes I can view the folio....Basically the folio is never saved to the iPad, after its first viewing.
    The Folio has an autoplay slideshow in its first article. Don't know if there is anything else relevant I can add to help?

  • Issues with Finder - window 'view type' not sticking, picture backgrounds

    Since my upgrade from Snow Leopard, I've noticed a few minor problems with the Finder in Lion.
    Can anyone confirm if these are known bugs in Lion?
    1. At random, certain folders will not remember their view type anymore. Some do, some don't. Logging in as root and changing them there has fixed some, but others keep reverting back to a "default". It happens at any point while I am using the system, even without logging out or restarting. I've changed folder view types and come back 10 minutes later and they've changed on me! I used to have this problem with Tiger and Leopard, but not Snow Leopard. Seems it's back with Lion 10.7.0.
    2. Under Snow Leopard I had various JPG and PNG photos used as backgrounds for various folders in icon view. Under Lion, almost all of these backgrounds now only occupy one small corner of the window. They are not being displayed at their full size. The fact that they worked in Snow Leopard indicates there are no problems with the photos themselves.
    3. Various problems with grid layout in icon view. Dragging an icon to it's proper position in the grid will often not "stick". i.e. I line it up perfectly with the grid yet the icon goes flying off half way across the screen to another position. The Finder seems a lot less forgiving than Snow Leopard in this regard.
    Since everything was runing perfectly for me in Snow Leopard I assume these are bugs that will hopefully be ironed out in future system updates.

    Since my upgrade from Snow Leopard, I've noticed a few minor problems with the Finder in Lion.
    Can anyone confirm if these are known bugs in Lion?
    1. At random, certain folders will not remember their view type anymore. Some do, some don't. Logging in as root and changing them there has fixed some, but others keep reverting back to a "default". It happens at any point while I am using the system, even without logging out or restarting. I've changed folder view types and come back 10 minutes later and they've changed on me! I used to have this problem with Tiger and Leopard, but not Snow Leopard. Seems it's back with Lion 10.7.0.
    2. Under Snow Leopard I had various JPG and PNG photos used as backgrounds for various folders in icon view. Under Lion, almost all of these backgrounds now only occupy one small corner of the window. They are not being displayed at their full size. The fact that they worked in Snow Leopard indicates there are no problems with the photos themselves.
    3. Various problems with grid layout in icon view. Dragging an icon to it's proper position in the grid will often not "stick". i.e. I line it up perfectly with the grid yet the icon goes flying off half way across the screen to another position. The Finder seems a lot less forgiving than Snow Leopard in this regard.
    Since everything was runing perfectly for me in Snow Leopard I assume these are bugs that will hopefully be ironed out in future system updates.

  • TS1702 My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new

    My iPhone 4s didn't do it until the latest update so imnpretty sure it's on the apple server some sort of bug maybe? Not sure. But whatever it is I really would like to download apps. It won't let me download any apps and my phone is brand new.

    Sorry guysy iPhone says unable to download application at this time and I try all day and it still won't let me download no matter how hard I try.

  • How to add a code so my drag and drop movie clip will not stick  once it is dragged to final place o

    Hello all and kglad, I have to use the old drag and drop code on my movie clips, but the problem is when I drag the movieclip to the area on my .swf file once i release it, it sticks to the hand mover.
    I am encloseing the action script I am using could someone or kglad tell me what is missing from the code so that once it is released it will not stick, see code below
    circle.onPress = function(){
    startDrag(this);
    circle.onRelease = function(){
    stopDrag();
    I am desparate for help on this must get project ready for this afternoon
    Seal55

    there's nothing wrong with that code but it would be better to use:
    circle.onPress = function(){
    this.startDrag();
    circle.onRelease = function(){
    this.stopDrag();
    but that won't solve your problem.  there must be something else going on like a depth issue.  you may need to use swapDepths() to bring your circle under the mouse when releasing.

  • Itunes 10.6.3 - Just update to the new Itunes and the album artwork is not sticking anymore... I upload the artwork and when I change songs and go back the art is gone. Anyone with similar issue ?

    Itunes 10.6.3 - Just update to the new Itunes and the album artwork is not sticking anymore... I upload the artwork and when I change songs and go back the art is gone. Anyone with similar issue ?

    I have this issue.  Album artwork was totally fine before.  After this update, it is all messed up and even got messed up when transferred to my iphone.
    iTunes doesn't have the artwork anymore, but then iPhone has it but shows wrong artwork with wrong albums.
    Please fix!

Maybe you are looking for