diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-09-04 09:25:48 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-09-09 13:04:14 +0200 |
commit | 67600fe5c9380bdb3eb26809a6475eae30a23231 (patch) | |
tree | ccc78f40de37a48051696f127264ce887fb45988 | |
parent | 45d1e227f910b6c3746b12fb2eebfac498c14ba5 (diff) |
tdf#67770: Config for remembering the last active deck
Change-Id: I88751dda9d4aa284b044ca27fd3d6727f34fbcaf
Reviewed-on: https://gerrit.libreoffice.org/41876
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu | 6 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/UI/Sidebar.xcs | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu index ed65eeb699ad..6fba3c3753c5 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu @@ -1548,7 +1548,11 @@ <value>8</value> </prop> </node> - </node> + <prop oor:name="LastActiveDeck"> + <value oor:separator=";"> + any, PropertyDeck; + </value> + </prop> </node> </oor:component-data> diff --git a/officecfg/registry/schema/org/openoffice/Office/UI/Sidebar.xcs b/officecfg/registry/schema/org/openoffice/Office/UI/Sidebar.xcs index 81772511b806..6c5fc3a17482 100644 --- a/officecfg/registry/schema/org/openoffice/Office/UI/Sidebar.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/UI/Sidebar.xcs @@ -245,6 +245,17 @@ <desc>Contains all registered sidebar content panels.</desc> </info> </set> + <prop oor:name="LastActiveDeck" oor:type="oor:string-list"> + <info> + <desc>Contains IDs of the decks that were active last time the application was closed. + Each entry is a string of 2 comma-separated values, application name and DeckID. Valid + values for application name are the same as those in ContextList, for example: + + WriterVariants, StyleListDeck; + Impress, PropertyDeck; + </desc> + </info> + </prop> </group> </component> </oor:component-schema> |