to adjust the width of transform dialog. issue #1332

This commit is contained in:
Jacky 2017-11-17 08:56:30 -05:00
parent b3cb7d4bf3
commit bd07fe0e1a
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<div class="dialog-frame" > <div class="dialog-frame" style="width: 80%;" >
<div class="dialog-border"> <div class="dialog-border">
<div class="dialog-header" bind="dialogHeader"></div> <div class="dialog-header" bind="dialogHeader"></div>
<div class="dialog-body" bind="dialogBody"> <div class="dialog-body" bind="dialogBody">

2
refine
View File

@ -942,7 +942,7 @@ elif [ "$OS" = "linux" ] ; then
fi fi
echo You have "$freeRam"M of free memory. echo You have "$freeRam"M of free memory.
echo Your current configuration will allow to use $REFINE_MEMORY of memory. echo Your current configuration is set to use $REFINE_MEMORY of memory.
echo OpenRefine can run better when given more memory. Read our FAQ on how to allocate more memory here: echo OpenRefine can run better when given more memory. Read our FAQ on how to allocate more memory here:
echo https://github.com/OpenRefine/OpenRefine/wiki/FAQ:-Allocate-More-Memory echo https://github.com/OpenRefine/OpenRefine/wiki/FAQ:-Allocate-More-Memory

View File

@ -145,7 +145,7 @@ rem --- Check free memory ---------------------------------------------
for /f "usebackq skip=1 tokens=*" %%i in (`wmic os get FreePhysicalMemory ^| findstr /r /v "^$"`) do @set /A freeRam=%%i/1024 for /f "usebackq skip=1 tokens=*" %%i in (`wmic os get FreePhysicalMemory ^| findstr /r /v "^$"`) do @set /A freeRam=%%i/1024
echo You have %freeRam%M of free memory. echo You have %freeRam%M of free memory.
echo Your current configuration will allow to use %REFINE_MEMORY% of memory. echo Your current configuration is set to use %REFINE_MEMORY% of memory.
echo OpenRefine can run better when given more memory. Read our FAQ on how to allocate more memory here: echo OpenRefine can run better when given more memory. Read our FAQ on how to allocate more memory here:
echo https://github.com/OpenRefine/OpenRefine/wiki/FAQ:-Allocate-More-Memory echo https://github.com/OpenRefine/OpenRefine/wiki/FAQ:-Allocate-More-Memory
echo. echo.