mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Introduce tree favorites:
* Add a button right besides db/table filter for hiding non-favorites * Add an icon on the very left of table nodes, showing whether they are favorites Fixes issue #3366
This commit is contained in:
@ -176,7 +176,7 @@ type
|
||||
asActionShortcut1, asActionShortcut2, asHighlighterForeground, asHighlighterBackground, asHighlighterStyle,
|
||||
asListColWidths, asListColsVisible, asListColPositions, asListColSort, asSessionFolder,
|
||||
asRecentFilter, asTimestampColumns, asDateTimeEditorCursorPos, asAppLanguage, asAutoExpand, asForeignDropDown, asQueryHistoryEnabled,
|
||||
asColumnSelectorWidth, asColumnSelectorHeight, asDonatedEmail,
|
||||
asColumnSelectorWidth, asColumnSelectorHeight, asDonatedEmail, asFavoriteObjects,
|
||||
asUnused);
|
||||
TAppSetting = record
|
||||
Name: String;
|
||||
@ -3373,6 +3373,7 @@ begin
|
||||
InitSetting(asColumnSelectorWidth, 'ColumnSelectorWidth', 200, False, '');
|
||||
InitSetting(asColumnSelectorHeight, 'ColumnSelectorHeight', 270, False, '');
|
||||
InitSetting(asDonatedEmail, 'DonatedEmail', 0, False, '');
|
||||
InitSetting(asFavoriteObjects, 'FavoriteObjects', 0, False, '', True);
|
||||
end;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user