Skip to content

Commit 4dd262b

Browse files
committed
Set Creation Time as Default Sorting Order in Breakpoints View
Updated the default sorting order of breakpoints in the Breakpoints view to use creation time.
1 parent 3d75a26 commit 4dd262b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPreferenceInitializer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2004, 2025 IBM Corporation and others.
2+
* Copyright (c) 2004, 2026 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -69,7 +69,8 @@ public void initializeDefaultPreferences() {
6969
prefs.setDefault(IInternalDebugUIConstants.PREF_LAUNCH_LAST_IF_NOT_LAUNCHABLE, true);
7070

7171
prefs.setDefault(IInternalDebugUIConstants.PREF_TERMINATE_AND_RELAUNCH_LAUNCH_ACTION, false);
72-
prefs.setDefault(IInternalDebugUIConstants.PREF_BREAKPOINT_SORTING_ORDER, IInternalDebugUIConstants.BREAKPOINT_SORTING_ORDER_NAME);
72+
prefs.setDefault(IInternalDebugUIConstants.PREF_BREAKPOINT_SORTING_ORDER,
73+
IInternalDebugUIConstants.BREAKPOINT_SORTING_ORDER_CREATION_TIME);
7374

7475
//View Management preference page
7576
prefs.setDefault(IDebugUIConstants.PREF_MANAGE_VIEW_PERSPECTIVES, IDebugUIConstants.PREF_MANAGE_VIEW_PERSPECTIVES_DEFAULT);

0 commit comments

Comments
 (0)