Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
mobile Datovka
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Datovka projects
mobile Datovka
Commits
dc1316f8
Commit
dc1316f8
authored
Oct 27, 2016
by
Martin Straka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another fix of text fonts
parent
2823d959
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
src/common.h
src/common.h
+3
-0
src/main.cpp
src/main.cpp
+4
-0
No files found.
src/common.h
View file @
dc1316f8
...
...
@@ -27,6 +27,9 @@
/* APPLICATION IDENTIFICATION */
#define APP_ORG_NAME "CZ.NIC, z.s.p.o."
#define APP_ORG_DOMAIN "cz.nic"
#define DEFAULT_FONT_FAMILY "System"
#define DEFAULT_FONT_SIZE 16
/* HTML INFO MACRO */
#define divStart "<div>"
...
...
src/main.cpp
View file @
dc1316f8
...
...
@@ -78,6 +78,10 @@ int main(int argc, char *argv[])
app
.
setOrganizationDomain
(
APP_ORG_DOMAIN
);
app
.
setApplicationName
(
APP_NAME
);
app
.
setApplicationVersion
(
VERSION
);
QFont
font
;
font
.
setFamily
(
DEFAULT_FONT_FAMILY
);
font
.
setPointSize
(
DEFAULT_FONT_SIZE
);
app
.
setFont
(
font
);
/* load global settings */
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment