• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
8

P: Point Color doesn't clear when syncing

Community Beginner ,
Oct 17, 2023 Oct 17, 2023

Copy link to clipboard

Copied

Issue: Point colour does not clear when syncing from an image with no point color adjustments

  • Lightroom Classic Version Number: 13.0.1
  • OS Version Number: 13.5.2


Steps to reproduce:

  1.  Image 1 has no point color adjustments
  2.  Image 2 has point color adjustments 
  3.  Sync develop settings from image 1 to image 2

Expected result: Point color adjustments should be Nil, 0
Actual result: Point color adjustments remain attached to image 2

 

Reversing the order and pointg color adjustments carry over from image 2 to image 1. Seemingly no way to clear the point color adjustment unless resetting image individually using the reset buttoin at the bottom of the develop module. Very time consuming for 1100 images.

 

Bug Fixed
TOPICS
macOS , Windows

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 2 Pinned Replies

Adobe Employee , Oct 17, 2023 Oct 17, 2023

Updating Status and adding bug number - Thank you for your report. 

Status Acknowledged

Votes

Translate

Translate
Adobe Employee , Dec 13, 2023 Dec 13, 2023

Greetings all,

 

Updates for the Adobe Photography Products have been released.  The December 2023 updates contain an update for this issue. 

If you do not see the update in your Creative Cloud Application, you can refresh it by hitting [Ctrl/Cmd]+[Alt/Opt]+[ R ].

Note: It may take up to 24 hours for your update to be available in your Creative Cloud app.

 

Thank you for your patience.

Status Fixed

Votes

Translate

Translate
17 Comments
Community Expert ,
Oct 17, 2023 Oct 17, 2023

Copy link to clipboard

Copied

Here's an intermediate solution: Select all images, go to the Develop module, switch on Auto Sync and reset point color.

 

-- Johan W. Elzenga

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Oct 17, 2023 Oct 17, 2023

Copy link to clipboard

Copied

Updating Status and adding bug number - Thank you for your report. 

Rikk Flohr - Customer Advocacy: Adobe Photography Products
Status Acknowledged

Votes

Translate

Translate

Report

Report
Community Beginner ,
Oct 17, 2023 Oct 17, 2023

Copy link to clipboard

Copied

Gave this a try and unfortunatley did not work, even though a message flashes up saying "Point colors updated for 15 images". Cheers

Votes

Translate

Translate

Report

Report
LEGEND ,
Oct 18, 2023 Oct 18, 2023

Copy link to clipboard

Copied

While waiting for this to be fixed, you can use the Copy Settings plugin to copy "no point colors" correctly.

Votes

Translate

Translate

Report

Report
Advocate ,
Oct 19, 2023 Oct 19, 2023

Copy link to clipboard

Copied

@Rikk Flohr: Photography 

 

I reported this bug already internally as: LRD-4212718

 

 

 

 

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Oct 19, 2023 Oct 19, 2023

Copy link to clipboard

Copied

@C.Cella  That bug number is for a Histogram bug -not Point Color. 

Rikk Flohr - Customer Advocacy: Adobe Photography Products

Votes

Translate

Translate

Report

Report
Advocate ,
Oct 19, 2023 Oct 19, 2023

Copy link to clipboard

Copied

Apologise @Rikk Flohr: Photography

The forum remembered the last number I used last time and I clicked that suggestion in the clipboard...weird.

 

 

This is the correct number: LRD-4213968

Votes

Translate

Translate

Report

Report
LEGEND ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

LR chokes trying to create a preset with just Point Color checked, with a color selected in the Point Color panel, but no Point Color sliders changed.


To reproduce on LR 13.0.1 / Mac OS:

 

1. In the Point Color tab of the Color Mixer panel, use the dropper to select a color.

 

2. Create a preset named Test with just Point Color checked.

 

3. Observe that Test doesn't appear under User Presets in the Presets panel.

 

4. Do Preferences > Presets > Show Lightroom Develop Presets, and observe that Test.xmp is in the folder.

 

5. Restart LR and observe that Test still doesn't appear in the Presets panel.

 

6. In the Point Color panel, change Hue Shift to 1.

 

7. Create a preset named Test2, and observe that Test2 appears in the Presets panel.

Votes

Translate

Translate

Report

Report
Advocate ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

@johnrellis 

 

You must also check Process Version and the Preset will be created even if the HSL shifts or HSL Ranges are at the default.

 

@Rikk Flohr: Photography I reported this bug already internally: RD-4213967

 

.

Votes

Translate

Translate

Report

Report
LEGEND ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

"I reported this bug already internally: RD-4213967"

 

That's very good, because there's a good chance that the two symptoms, failing to sync no point color settings and failing to create a preset, in fact have different underlying causes with different lines of code needing correcting.  In the past, developers often miss additional symptoms merged into long bug threads here.

 

When no point colors have been selected, the internal representation is:

    PointColors = nil

It's a common programming mistake (which I've made many times) to forget that in some contexts "nil" should be treated the same as the empty array "{}".  The Sync/Copy-Paste code is clearly making that mistake, as did my Copy Settings plugin until I fixed it.

 

But when a point color has been selected but no sliders changed, the internal representation is much different:

    PointColors = {--table: 6
        [1] = {--table: 7
            HueRange = {--table: 8
                LowerFull = 0.333333, 
                LowerNone = 0, 
                UpperFull = 0.666667, 
                UpperNone = 1}, 
            HueShift = 0, 
            LumRange = {--table: 9
                LowerFull = 0.745889, 
                LowerNone = 0.195889, 
                UpperFull = 1, 
                UpperNone = 1}, 
            LumScale = 0, 
            RangeAmount = 0.5, 
            SatRange = {--table: 10
                LowerFull = 0.740754, 
                LowerNone = 0.190754, 
                UpperFull = 1, 
                UpperNone = 1}, 
            SatScale = 0, 
            SrcHue = 4.12705, 
            SrcLum = 0.839618, 
            SrcSat = 0.920754}}, 

 So it's very likely that fixing Sync to recognize PointColors = nil won't fix the preset code that gets confused by a valid non-empty representation of Point Color settings.

Votes

Translate

Translate

Report

Report
LEGEND ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

"You must also check Process Version and the Preset will be created"

 

It's sufficient to check any other additional setting, e.g. Exposure or Manual Vignetting.

Votes

Translate

Translate

Report

Report
Advocate ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

@johnrellis we must also remember that in LrC we can still "Check none" and yet create a "settings-less" Preset that though will appear in the Settings folder but not appear in LrC, in our Preset list.

Yet another bug I filed internally years ago that was never fixed.

 

"It's sufficient to check any other additional setting, e.g. Exposure or Manual Vignetting"

 

Yes but that preset when applied will change the settings of any existing Category that was also checked alongside Point Color so is simpler to check Process Version that will not likely mess with any other existing setting.

 

Votes

Translate

Translate

Report

Report
LEGEND ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

"Yes but that preset when applied will change the settings of any existing Category that was also checked alongside Point Color so is simpler to check Process Version that will not likely mess with any other existing setting."

 

Agreed. I was just calling out that the bug isn't particular to Process Version needing to be checked, and thus more likely a bug in the preset-creation logic.

Votes

Translate

Translate

Report

Report
Advocate ,
Oct 24, 2023 Oct 24, 2023

Copy link to clipboard

Copied

@johnrellis preset creation is vastly lacklustre and there are some "forbidden presets".

For instance Color Grading we can't preset only the Luminances without the other settings...why is that only god knows.

 

For Color Grading I wish we could we could copy/sync or Preset

 

[ ] Color Grading - 3 Ways

[ ] Global

[ ] Balance & Blending (these can be preset individually manually, I already have done it)

[ ]  Luminances.

 

But I digress.

 

.

 

Votes

Translate

Translate

Report

Report
New Here ,
Nov 23, 2023 Nov 23, 2023

Copy link to clipboard

Copied

I have an issue with syncing the Point Color tool. I applied one shift in color toa single image then synced that change across all my images in the catolgue. But then I had a change of heart and wanted to remove the color shift. Even with Auto Sync engaged, deleteing the swatch would not work across all selected images so what I did was double click each slider to reset it back to 0. That change would take affect across all selected photos. So it's a workable compromise for the time being.

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Dec 13, 2023 Dec 13, 2023

Copy link to clipboard

Copied

Greetings all,

 

Updates for the Adobe Photography Products have been released.  The December 2023 updates contain an update for this issue. 

If you do not see the update in your Creative Cloud Application, you can refresh it by hitting [Ctrl/Cmd]+[Alt/Opt]+[ R ].

Note: It may take up to 24 hours for your update to be available in your Creative Cloud app.

 

Thank you for your patience.

Rikk Flohr - Customer Advocacy: Adobe Photography Products
Status Fixed

Votes

Translate

Translate

Report

Report
LEGEND ,
Dec 14, 2023 Dec 14, 2023

Copy link to clipboard

Copied

LATEST

I tested both recipes above, syncing and creating a preset, and they now work correctly.

Votes

Translate

Translate

Report

Report