Brush size spreads as I move the mouse in Photoshop CC

My paint brush is acting differently than it used to in older versions of Photoshop. I'm not sure if it's just an update to the software, a setting somewhere that's changed, or if it has something to do with my smart mouse.... I've been using Photoshop for a very long time, and strangely haven't been able to find any answers to why the brush acts so differently lately via Google, so I'm hoping someone here can chime in.
In the picture below, the first shot is the first click with the brush onto the canvas. As soon as I move the brush in any direction, the size changes drastically. The second and third shot show what happens when I barely move the brush to the right.
None of the controls at the top are selected (use pressure for opacity, airbrush, use pressure for size), and I've turned on and off all of the various options in Brush Presets, and can't seem to get the brush size to stay consistent. What am I missing? Thank you!

I think it would be helpful it you posted your brush palette when you have the problem so we cab see the actual brush settings.  First try resetting Photoshop tools.

Similar Messages

  • Early today Alt, Ctr and Click and drag changed the brush size. Now it makes the move tool work. Anyone have this problem. I think Adobe had an update and put a bug in the program.

    Early today Alt, Ctr and Click and drag changed the brush size. Now it makes the move tool work. Anyone have this problem. I think Adobe had an update and put a bug in the program.

    Which version of photoshop and operating system are you using?
    windows:
    Alt + right click + drag left or right
    mac:
    Control + Option + left click + drag left or right

  • Why do i need to move the mouse?

    I am writing a simple digital clock. it calls the repaint in an actionperformed every 1 second and updates the clock. But fo some reason it wont repaint until i move the mouse?? why is this?

    import java.awt.*;
    import java.util.*;
    import java.applet.Applet;
    import java.awt.event.*;
    public class SimpleDigitalClock extends Applet implements ActionListener{
              private javax.swing.Timer timer;
              private int digit;
              private int digit2;
              private int digit3;
              private int digit4;
              private int digit5;
              private int digit6;
              private int x, y , size;
              private int thickness = 5;
              private Color color;
    public void init(){
    timer = new javax.swing.Timer(1000, this);
    timer.setInitialDelay(1000);
    timer.start();
    public void paint(Graphics g) {
    int y = 30;
         g.fillRect(70,42,5,5);
         g.fillRect(70,58,5,5);
         g.fillRect(150,42,5,5);
         g.fillRect(150,58,5,5);
         GregorianCalendar cal = new GregorianCalendar();
         digit5 = cal.get(Calendar.HOUR)/10;
         x = 10;
         if (digit5==0 || digit5==2 || digit5==3 || digit5==5 || digit5==6 || digit5==7 || digit5==8 || digit5==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit5==2 || digit5==3 || digit5==4 || digit5==5 || digit5==6 || digit5==8 || digit5==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit5==0 || digit5==2 || digit5==3 || digit5==5 || digit5==6 || digit5==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit5==0 || digit5==4 || digit5==5 || digit5==6 || digit5==8 || digit5==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit5==0 || digit5==2 || digit5==6 || digit5==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit5==0 || digit5 ==1 || digit5==2 || digit5==3 || digit5==4 || digit5==7 || digit5==8 || digit5==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit5==0 || digit5 ==1 || digit5==3 || digit5==4 || digit5==5 || digit5==6 || digit5==7 || digit5==8 || digit5==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
                        digit6 = cal.get(Calendar.HOUR)%10;
                        x = 40;
                        if (digit6==0 || digit6==2 || digit6==3 || digit6==5 || digit6==6 || digit6==7 || digit6==8 || digit6==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit6==2 || digit6==3 || digit6==4 || digit6==5 || digit6==6 || digit6==8 || digit6==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit6==0 || digit6==2 || digit6==3 || digit6==5 || digit6==6 || digit6==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit6==0 || digit6==4 || digit6==5 || digit6==6 || digit6==8 || digit6==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit6==0 || digit6==2 || digit6==6 || digit6==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit6==0 || digit6 ==1 || digit6==2 || digit6==3 || digit6==4 || digit6==7 || digit6==8 || digit6==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit6==0 || digit6 ==1 || digit6==3 || digit6==4 || digit6==5 || digit6==6 || digit6==7 || digit6==8 || digit6==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
                        digit = cal.get(Calendar.SECOND)%10;
                        x = 190;
                        if (digit==0 || digit==2 || digit==3 || digit==5 || digit==6 || digit==7 || digit==8 || digit==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit==2 || digit==3 || digit==4 || digit==5 || digit==6 || digit==8 || digit==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit==0 ||digit==2 || digit==3 || digit==5 || digit==6 || digit==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit==0 || digit==4 || digit==5 || digit==6 || digit==8 || digit==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit==0 || digit==2 || digit==6 || digit==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit==0 || digit ==1 || digit==2 || digit==3 || digit==4 || digit==7 || digit==8 || digit==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit==0 ||digit ==1 || digit==3 || digit==4 || digit==5 || digit==6 || digit==7 || digit==8 || digit==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
                        digit2 = cal.get(Calendar.SECOND)/10;
                        x = 160;
                        if (digit2==0 || digit2==2 || digit2==3 || digit2==5 || digit2==6 || digit2==7 || digit2==8 || digit2==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit2==2 || digit2==3 || digit2==4 || digit2==5 || digit2==6 || digit2==8 || digit2==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit2==0 || digit2==2 || digit2==3 || digit2==5 || digit2==6 || digit2==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit2==0 || digit2==4 || digit2==5 || digit2==6 || digit2==8 || digit2==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit2==0 || digit2==2 || digit2==6 || digit2==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit2==0 || digit2 ==1 || digit2==2 || digit2==3 || digit2==4 || digit2==7 || digit2==8 || digit2==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit2==0 || digit2 ==1 || digit2==3 || digit2==4 || digit2==5 || digit2==6 || digit2==7 || digit2==8 || digit2==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
                        digit3 = cal.get(Calendar.MINUTE)/10;
                        x = 90;
                        if (digit3==0 || digit3==2 || digit3==3 || digit3==5 || digit3==6 || digit3==7 || digit3==8 || digit3==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit3==2 || digit3==3 || digit3==4 || digit3==5 || digit3==6 || digit3==8 || digit3==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit3==0 || digit3==2 || digit3==3 || digit3==5 || digit3==6 || digit3==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit3==0 || digit3==4 || digit3==5 || digit3==6 || digit3==8 || digit3==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit3==0 || digit3==2 || digit3==6 || digit3==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit3==0 || digit3 ==1 || digit3==2 || digit3==3 || digit3==4 || digit3==7 || digit3==8 || digit3==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit3==0 || digit3 ==1 || digit3==3 || digit3==4 || digit3==5 || digit3==6 || digit3==7 || digit3==8 || digit3==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
                        digit4 = cal.get(Calendar.MINUTE)%10;
                        x = 120;
                        if (digit4==0 || digit4==2 || digit4==3 || digit4==5 || digit4==6 || digit4==7 || digit4==8 || digit4==9)//top hoz
                        g.fillRect(x, y ,25 ,thickness);
                        if (digit4==2 || digit4==3 || digit4==4 || digit4==5 || digit4==6 || digit4==8 || digit4==9)//mid hoz
                        g.fillRect(x, y+20,25 ,thickness);
                        if (digit4==0 || digit4==2 || digit4==3 || digit4==5 || digit4==6 || digit4==8)//bot hoz
                        g.fillRect(x,y+40,25,thickness);
                        if (digit4==0 || digit4==4 || digit4==5 || digit4==6 || digit4==8 || digit4==9)//top left
                        g.fillRect(x ,y ,thickness ,20);
                        if (digit4==0 || digit4==2 || digit4==6 || digit4==8)
                        g.fillRect(x ,y+20 ,thickness ,25);
                        if (digit4==0 || digit4 ==1 || digit4==2 || digit4==3 || digit4==4 || digit4==7 || digit4==8 || digit4==9)//top right
                        g.fillRect(x+20,y ,thickness ,20);
                        if (digit4==0 || digit4 ==1 || digit4==3 || digit4==4 || digit4==5 || digit4==6 || digit4==7 || digit4==8 || digit4==9)
                        g.fillRect(x+20,y+20 ,thickness ,25);
    public void actionPerformed(ActionEvent e) {
         repaint();

  • I have a Mac Book Pro.  What do I do when software freezes up and I can't move the mouse?

    I have Windows Outlook for Mac on my computer.  It froze up tonight, for the first time ever in over a year, and I could not move the mouse, etc.  Is there some way to escape from this situation without just turning the notebook off?
    Thank you,
    Mary

    Press and hold down the Power button for 5-10 seconds until the computer shuts down. Wait one minute then restart the computer from your Snow Leopard DVD using the "C" key. See the following:
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Restart the computer from the Apple menuitem.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • PS CS5 Extended on Windows -  When trying to use the clone stamp and/or healing brush as soon as I move the cursor over the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  W

    PS CS5 Extended on Windows
    When trying to use the clone stamp and/or healing brush as soon as I move the cursor from the toolbar over to the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  This just started tonight.  What's causing this weird behaviour?

    What are the settings in Window > Clone Source?

  • Want to move the mouse arrow without physical mouse

    Hi There
    I have my Mac Book connected to the TV almost 24x7 and I have a wireless keyboard and an apple remote but not the mighty mouse.
    the issue is that I would like to be able to move the mouse arrow over the screen and click or doble click without having to buy a mouse. how can I do it? is that a combination like someting plus the arrow keys? is that possible to use the apple remote as a mouse? i mean it would be great too. is got the 4 directions and a button in the center for clicking.
    any other solution?
    many thanks in advance

    Turn on keyboard navigation in the Keyboard shortcuts of Keyboard and Mouse prefs and you can use the keyboard to navigate through the menus, folders, etc. However, there is no way to drag.
    Set full keyboard access to "All Controls" and you can tab through all the buttons in the dialog boxes. Use spacebar to "click" the selected button.
    In the Finder, Cmd+down arrow opens a file/folder. Cmd+Up arrow goes up in the hierarchy.
    Combine this with the previous tip and you can have it all, mostly.
    Also, without any of that, esc or cmd+. cancels, and cmd+first letter of button usually selects the button. That last one is application specific.

  • How do I fix a frozen screen on MacBook Pro where you can still move the mouse?

    I tried rebooting several times. I can move the mouse around but when I try to open programs, I'm not able to. I bought this MacBook in 2009 if that helps.

    Might be time for an OS reinstall.  Back up all your data and try that.  You don't have to erase the partition first, just install on top of what you have as a refresh.  If that doesn't fix it, then do a full wipe and reinstall.  If the problem persists, then it's a hardware issue.
    You can try an SMC and PRAM reset prior the OS reload options to see if that fixes it since that doesn't require a ton of work and won't cause loss of data.

  • FireFox with adobe flash using a retina macbook pro under win 8.1 64 bit is lagging . when you move the mouse above any flash game / video

    Hi
    I asked this question again and i reported this bug , i am a computer engineer and i tested it with few macbook pro retina laptops , when u use win 8.1 64 bit or 32 bit and install adobe flash under firefox try to play any game in facebook , view video on youtube or use any FLASH video and move the mouse above the screen of the flash game / video / etc , the screen will lag alot .
    under chrome this problem doesnt exist but the screen is blurry in chrome when using retina screen thats why firefox is better , but the problem is annoying .
    i tried to disable hardware acceleration as you suggested still the same problem

    Hi thesoulkeeper,
    Do you have the bug number? We can try needsinfo to ask for some help.

  • The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -  When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for abo

    The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -
    When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for about 6 months ...

    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325
    Are you trying to use a 32bit version (I did not even know there is one for Photoshop CC 2014)?
    If so – why?

  • Since upgrading to OS X 10.8.2 a few days ago, Safari will suddenly zoom in on web pages (happens on multiple sites) when I scroll or move the mouse -- any one know why and what to do about it? Thanks.

    Since upgrading to OS X 10.8.2 a few days ago, Safari will suddenly zoom in on web pages (happens on multiple sites) when I scroll or move the mouse -- any one know why and what to do about it? Thanks!

    It really isn't a well thought out 'gesture' when a normal scroll action can result in an unwanted zoom but disabling SmartZoom wasn't an option for me—one of those with eyes that tire easily when reading very small text on a 27" display.
    For a while I used command-+ and command-'-' to read small text but that isn't supported in some apps and for Safari it often leaves the browser in an less than perfect state when moving to the next page.  I also tried option scroll to zoom the whole display but that was not desirable, either.
    I finally settled on leaving SmartZoom enabled and remembering to double tap with one finger whenever the undesired zoom happens. It happens so often that the double tap is almost a reflex action for me.

  • My is MacBook pro is frozen and I cannot move the mouse and there is lots of batter still left.  Any suggestions?

    My MacBook Pro is frozen and I cannot move the mouse and I have plenty of batter left on computer.  Any idea on how to unfreeze mouse or computer.  Help?

    Press Command + Control + Power button and Force Restart your Macbook Pro if you do not have any Important Work open as this will Turn OFF and Turn ON your Mac and any Unsaved Data will be lost.

  • I cannot block some advertisements in the journal De Telegraaf, in The Netherlands. When I move the mouse to blokkeren (Dutch) this blokkeren disappers. How to solve it?

    I cannot block some advertisements in the journal De Telegraaf, in The Netherlands. When I move the mouse to blokkeren (Dutch) this blokkeren disappers. How to solve it? edit

    You cannot boot an iBook from an external USB drive--only a firewire drive. Actually, the drive is just a drive--it is the enclosure that determines USB vs. FireWire. If you could find an appropriate firewire enclosure, you could remove the drive from the USB enclosure and place it in a firewire enclosure and then be able to boot from that. Or you could just purchase an external firewire drive if those are available where you are.
    FireWire external drives are quite useful. One option would be to mount the external drive on the good iBook, format it properly for OS X with Disk Utility, and then use a program like Super Duper to make an exact clone of your internal hard drive. This is a popular way of backing up your stuff. You can boot from either the internal or the external. This means that if your internal hard drive were to die, you would have all your stuff on the external, and could run off of that. Since you are already using the USB for backup, it would probably be best to acquire a new firewire drive for troubleshooting and testing if you decide to go this route, since you really don't want to lose your existing backup.
    If you did have a bootable clone, you could see if the sick iBook would boot from it or not. However, it may be more productive to pursue your other thread about the boot problem. I see that Richard has joined the thread as I had hoped he would. He actually works on iBooks and is very knowledgeable.
    Also, if you do get the second ibook working and want to install OS9, you might want to post a question in the "Mac OS X v 10.3 Panther and earlier" forum. I'm not up on this myself, but I believe there is something about installing OS 9 drivers while formating or something like that. I believe the smart guys on that forum could give you some guidance so that you can avoid the problems you encountered earlier.
    Good luck!

  • When ever i enter a new site if never open till i move my mouse on the screen not even site no function complets till i move the mouse

    From today i have faced a different type of error. As i enter any site or give printing or anything to Mozilla it never opens uptill i move the mouse.

    Hi,
    Thank you for reaching out to us.
    Lets try a couple of steps to resolve the issue.
    Please ensure all the Windows updates are installed and the PC is up to date.
    Try a clean boot to isolate the issue to a particular software.
    To perform clean boot, please click on the link below and select the Operating System version from the drop down, You can find the step by step instruction and also screenshots incase you need any reference.
    http://bit.ly/1z4VNji 

  • When safari is in full screen mode and I move the mouse to the top of the screen to bring up the menu bar and the bookmark bar, it does nothing.  Is anyone else having this issue?

    When safari is in full screen mode and I move the mouse to the top of the screen to bring up the menu bar and the bookmark bar, it does nothing.  Is anyone else having this issue?
    Thanks

    I just tested that since I hardly ever use full screen mode, this was the first time since I upgraded to Mountain Lion, and it worked fine for me.
    Try shutting Safari down and see if that changes anything.
    If that doesn't change anything, try shutting down and then rebooting.
    Allan

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

Maybe you are looking for

  • Windows 7 home premium 64 bit disc won't boot up on Lenovo B575

    My hard drive died on me. I never burned copies of the One Key Recovery disks. I replaced the Hard Drive with a toshiba SATA. I have burned several copies of windows 7 64 bit, and even bought an installation disc from Ebay, because I didn't want to p

  • Added WBS to FAGLFLEXT, and WBS no longer shown on FAGLL03

    Hi Guru's We recently added the WBS element to the FAGLFEXT table (mid April). When we run FAGLL03 this no longer shows the WBS element for historical documents - it shows it from Mid April only. Previous extracts from FAGLL03 have show the WBS. Is t

  • Stop Motion for Final Cut?

    Hello, I'm a stop motion animator and I am having the worst time ever trying to capture my frame by frame animated work in final cut pro. Every time I try to capture now, it will capture a little bit of the footage but once the animation starts (whic

  • Calculator does not have enough resolution

    I am using MBA with OS 10.8.2, using Calculator 10.8 (123) I set calculator to Scientific, with decimal place = 15 (max). If I try to calculate 1.6e-19 * 2, the answer is 0, because 1.6e-19 exceeds 15-bit decimal, and is truncated to 0. This is silly

  • One more bug in DB tools

    Hello All Yet another bug in DB toolset. The "defined size" is exchanged with "actual size". file: Rec Get Column Properties (R).vi under file: DB Tools List Columns.vi See enclosed pictures. It is enough to change two input to bundle to fix the prob