mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Create date and time formats preferences
Now we can actually change them in preferences instead of just deriving them from the language set. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
222ce62bce
commit
f85883c707
6 changed files with 23 additions and 14 deletions
|
|
@ -291,6 +291,9 @@ void copy_prefs(struct preferences *src, struct preferences *dest)
|
|||
dest->proxy_host = copy_string(src->proxy_host);
|
||||
dest->proxy_user = copy_string(src->proxy_user);
|
||||
dest->proxy_pass = copy_string(src->proxy_pass);
|
||||
dest->time_format = copy_string(src->time_format);
|
||||
dest->date_format = copy_string(src->date_format);
|
||||
dest->date_format_short = copy_string(src->date_format_short);
|
||||
dest->cloud_storage_password = copy_string(src->cloud_storage_password);
|
||||
dest->cloud_storage_newpassword = copy_string(src->cloud_storage_newpassword);
|
||||
dest->cloud_storage_email = copy_string(src->cloud_storage_email);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue