Compare commits

..

1 Commits

Author SHA1 Message Date
Lea Anthony
2b110e4ae5 Simplify Subscribe() 2020-09-09 06:14:52 +10:00
3 changed files with 5 additions and 16 deletions

View File

@@ -2,17 +2,11 @@
html,
body {
background-color: white;
color: black;
width: 100%;
height: 100%;
margin: 0;
}
input {
background-color: rgb(254,254,254);
color: black;
}
.container {
display: block;
width:100%;
@@ -23,8 +17,10 @@ input {
button {
font-size: 1rem;
background-color: white;
color: black;
}
#newCounter {
color: white;
}
.result {

View File

@@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v1.7.2-pre12"
const Version = "v1.7.2-pre9"

View File

@@ -1431,13 +1431,6 @@ struct webview_priv
style = WS_OVERLAPPED | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU;
}
// Scale
// Credit: https://github.com/webview/webview/issues/54#issuecomment-379528243
HDC hDC = GetDC(NULL);
w->width = GetDeviceCaps(hDC, 88)*w->width/96.0;
w->height = GetDeviceCaps(hDC, 90)*w->height/96.0;
ReleaseDC(NULL, hDC);
rect.left = 0;
rect.top = 0;
rect.right = w->width;