diff --git a/src/com/sheepit/client/standalone/SwingTooltips.java b/src/com/sheepit/client/standalone/swing/SwingTooltips.java similarity index 90% rename from src/com/sheepit/client/standalone/SwingTooltips.java rename to src/com/sheepit/client/standalone/swing/SwingTooltips.java index 2e3a749..3909d20 100644 --- a/src/com/sheepit/client/standalone/SwingTooltips.java +++ b/src/com/sheepit/client/standalone/swing/SwingTooltips.java @@ -1,4 +1,4 @@ -package com.sheepit.client.standalone; +package com.sheepit.client.standalone.swing; public enum SwingTooltips { WORKING_DIRECTORY( @@ -10,8 +10,8 @@ public enum SwingTooltips { RENDERBUCKET_SIZE("Basically the size of the orange squares you see in blender when you render. Blender calls it tile size. Unless you know better, the default is fine."), - CPU_CORES("How many (logical) cores of your CPU, often called threads, Sheepit may use. This doesn't apply to GPU-jobs. \n" - + "(Generally GPU jobs will use a single core to use the GPU, which doesn't use 100% of that core.)"), + CPU_CORES("How many (logical) cores of your CPU, often called threads, Sheepit may use. This doesn't apply to GPU-jobs.\n" + + "(Note that GPU jobs will also use CPU cores for scene building and feeding the GPU)\n"), MEMORY("How much RAM Sheepit may use. This isn't a 100% safe limit, since Blender can erroneously use more, \n" + "but Sheepit will try its best to give you jobs that require less than what you've entered here."), diff --git a/src/com/sheepit/client/standalone/swing/activity/Settings.java b/src/com/sheepit/client/standalone/swing/activity/Settings.java index 4aef993..6f8435f 100644 --- a/src/com/sheepit/client/standalone/swing/activity/Settings.java +++ b/src/com/sheepit/client/standalone/swing/activity/Settings.java @@ -71,9 +71,7 @@ import com.sheepit.client.hardware.gpu.opencl.OpenCL; import com.sheepit.client.network.Proxy; import com.sheepit.client.os.OS; import com.sheepit.client.standalone.GuiSwing; -import com.sheepit.client.standalone.GuiText; -import com.sheepit.client.standalone.GuiTextOneLine; -import com.sheepit.client.standalone.SwingTooltips; +import com.sheepit.client.standalone.swing.SwingTooltips; import com.sheepit.client.standalone.swing.components.CollapsibleJPanel; public class Settings implements Activity {