Skip to main content
Legend
November 24, 2025
Answered

Floating dialog will not come to the front when Develop, Book or Print modules are active

  • November 24, 2025
  • 2 replies
  • 143 views

I have a plugin that I'm developing and I'm using a floating dialog. When LrC has either the Library, Map, Slideshow or Web module active, the floating dialog can be brought to the front by clicking on it from the Windows Task bar. The floating dialog will not come to the front when Develop, Book or Print are active.

 

Is there a trick to this? Is there something that I'm missing? Is it as designed? Or is it a bug?

 

Code is 

local profileDialog = {
  title = "Metadata Settings",
  contents = dialogLayout,
  resizable = false,
  save_frame = 'MetadataSettingsPosition',
  blockTask = true,
  windowWillClose = closeDialog,
  background_color = LrColor( "gray" ),
}

LrDialogs.presentFloatingDialog( _PLUGIN, profileDialog )

 

Does anyone know?

 

Correct answer johnrellis

I see the same issue on Windows (but not Mac) with the floating dialogs in my Any Crop plugin. Floating dialogs have a number of rough edges, e.g. there's no way to keep them disappearing under the main window -- I tell users to adjust their window sizes so the Any Crop window peeks behind the main window.  Also, on Windows when in Window > Screen Mode > Full Screen, the floating dialog never comes to the front:

https://community.adobe.com/t5/lightroom-classic-bugs/p-sdk-floating-dialogs-always-in-back-never-in-front-in-screen-mode-gt-full-screen-on-windows/idi-p/15360555

 

I generally try to stay away from floating dialogs now.

2 replies

drtonybAuthor
Legend
November 25, 2025

@johnrellis 

 

Thanks John, that looks like a bug in Windows then.

 

johnrellis
johnrellisCorrect answer
Legend
November 24, 2025

I see the same issue on Windows (but not Mac) with the floating dialogs in my Any Crop plugin. Floating dialogs have a number of rough edges, e.g. there's no way to keep them disappearing under the main window -- I tell users to adjust their window sizes so the Any Crop window peeks behind the main window.  Also, on Windows when in Window > Screen Mode > Full Screen, the floating dialog never comes to the front:

https://community.adobe.com/t5/lightroom-classic-bugs/p-sdk-floating-dialogs-always-in-back-never-in-front-in-screen-mode-gt-full-screen-on-windows/idi-p/15360555

 

I generally try to stay away from floating dialogs now.