Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
adjust image size
Browse files Browse the repository at this point in the history
  • Loading branch information
MPIBR-tushevg committed Nov 16, 2017
1 parent fcaa094 commit 25f9864
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion NeuroBits.m
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

%% add controller
addlistener(obj.widget_FolderBrowser, 'file', 'PostSet', @obj.fcnCallback_requestFile);

addlistener(obj.widget_NeuroTree, 'event_treeExport', @obj.fcnCallback_requestTreeExport);
end

%% destructor
Expand Down Expand Up @@ -105,6 +105,15 @@ function delete(obj)

end

%% request tree export
function obj = fcnCallback_requestTreeExport(obj, ~, ~)

[filePath, fileName] = fileparts(obj.widget_FolderBrowser.file);
obj.widget_NeuroTree.filePath = filePath;
obj.widget_NeuroTree.fileName = fileName;

end

end


Expand Down
2 changes: 1 addition & 1 deletion widgets/WidgetImageBrowser
2 changes: 1 addition & 1 deletion widgets/WidgetNeuroTree

0 comments on commit 25f9864

Please sign in to comment.