Skip to content
Snippets Groups Projects
Commit 8df66d7a authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Gui: made it less responsive, to make it more responsive!

parent 3be2d039
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ classdef GtBaseGuiElem < handle ...@@ -36,7 +36,7 @@ classdef GtBaseGuiElem < handle
function updateDisplay(obj) function updateDisplay(obj)
% GTBASEGUIELEM/UPDATEDISPLAY Displaying function % GTBASEGUIELEM/UPDATEDISPLAY Displaying function
if ((now - obj.timestamp) > 3.818655386567116e-07) if ((now - obj.timestamp) > 1.157407407407407e-06)
obj.doUpdateDisplay(); obj.doUpdateDisplay();
obj.timestamp = now; obj.timestamp = now;
end end
...@@ -74,7 +74,7 @@ classdef GtBaseGuiElem < handle ...@@ -74,7 +74,7 @@ classdef GtBaseGuiElem < handle
function initParams(obj, arguments) function initParams(obj, arguments)
% parse input % parse input
obj.conf = parse_pv_pairs(obj.conf, arguments); [obj.conf, ~] = parse_pv_pairs(obj.conf, arguments);
end end
function setConfigInvariants(obj) function setConfigInvariants(obj)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment