Absolute window sizing

I have been trying to do a bind to a command that resizes a window to an absolute size using the following command:

hl.bind(mainMod .. "+ R", hl.dsp.window.resize({ x=600, y=400, relative="false" }))

but it always acts relative, increasing the size of the window in increments of x and y. Any idea what I am doing wrong here?
Thanks, Flint

@FlintRock, try changing the relative property in ur options table to a boolean, rather than a string.
I think lua will coerce the string value to a truthy boolean.
TLDR, try:

hl.bind(mainMod .. "+ R", hl.dsp.window.resize({ x=600, y=400, relative=false }))