From 3f4a45c2c44b1195978e734d5de7ac109ed72dc9 Mon Sep 17 00:00:00 2001 From: harlekin <5800926-mw102@users.noreply.gitlab.com> Date: Mon, 3 May 2021 20:36:51 +0000 Subject: [PATCH] tooltip correction --- .../client/standalone/{ => swing}/SwingTooltips.java | 6 +++--- .../sheepit/client/standalone/swing/activity/Settings.java | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) rename src/com/sheepit/client/standalone/{ => swing}/SwingTooltips.java (90%) 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 {