Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRA

SUMMARY

DETAILS

ORG-25874

Switch to other application when open Axis dialog from mini toolbar

  1. New a graph window, open Windows explorer

  2. Click the graph axis to show mini toolbar, click Axis Scale button

  3. In Axis Scale dialog, click More button

==> Switch to Windows explorer and then the axis dialog open

Fixed in Origin 2023b

ORG-26083

Pin Window fails to work when Cascade/ Tile Horizontally/Tile Vertically

  1. New several windows

  2. Pin a window.

  3. Select menu: Window: Cascade/ Tile horizontally/Tile Vertically

  4. ==>The pinned window was moved.

Fixed in Origin 2023b

ORG-26084

Arrange Windows should consider minimized windows

  1. Supposed there is a visible minimized window (near the bottom workspace) in Origin workplace.

  2. Select Window: Arrange Windows to open dialog, click OK with default settings. (Include Minimized Window is unchecked)

    ==> The minimized window became invisible and covered by other windows.

Fixed in Origin 2023b

ORG-26130

Origin crashed on append certain project

Origin 2023 crashed on append certain project

Fixed in Origin 2023b

ORG-25955

Minimized child window location inconsistent when Main window is restored and maximized

  1. Maximize Origin main window.

  2. Minimize book1. -->book1 is shown on bottom of Origin workspace.

  3. Move the minimized Book1 window somewhere close to the top of the Origin workspace.

  4. Restore Origin main window, then maximize Origin main window again.

  5. ==>book1 is not shown on original position,but moved down a distance.

Fixed in Origin 2023b

ORG-26153

Save Format as Theme in layout window will saves the theme to wrong place

  1. New a layout, add a text, right click and select save format as theme.

  2. Save theme as “Theme1“, then open Theme organizer dialog, activate Graph tab.

  3. ==>Fail to show “Theme1” in bottom theme panel.

Fixed in Origin2023b

ORG-25381

Color List too long to show all colors & color shows black in the imported palettes (.aco)

import the color palette (Trumatch色板.ase) as color list .

==>In the GUI, it will too long to show all color.

Import the .aco color palette (PANTONE solid coated.aco) from Photoshop installation path > Presets > Color Swatches folder

==>The color of this palette shows black.

Fixed in Origin2023b.

ORG-25987

F3 Find in Project issues on certain project file - beta forum

In Origin2023 and earlier versions, F3 to open Find in Project dialog, double click in the result items(Books), with the same duplicated name.

==> Error message box pops up saying “Element does not exist. Please try finding again.“

In Origin2023b, fixed by run Labtalk scripts: “doc -rd“

Programming

LabTalk

JIRA

SUMMARY

DETAILS

ORG-26094

Script window always open if set @SWFS by Preferences: System Variables dialog

System variable @SWFS is added in Origin 2023 to control font in Script window.

If user opens Preferences: System Variables dialog and set the system variable. E.g. set it to 15.

Then close Script window and then close Origin.

When launching Origin.

==> The script window always shows.

Fixed in Origin2023b.

ORG-5242

page.orientation not works for Graph

Run page.orientation = 1 fails to change Graph page from Landscape to Portrait.

Fixed in Origin2023b.

ORG-26527

Keyword of Switch command case sensitive issue

Script like below fails to work in Origin 2023, user need to write keyword “Case” as lower one “case” to make it works.

Code Block
nn=2;
switch (nn)
{
	Case 1:
		type "aa";
		break;
	Case 2:
		type "bb";
		break;
	Case 3:
		type "cc";
		break;
	default:
		break;
}

Fixed in Origin2023b.

...