tooltip correction

This commit is contained in:
harlekin
2021-05-03 20:36:51 +00:00
committed by Sheepit Renderfarm
parent f5faceebd6
commit 3f4a45c2c4
2 changed files with 4 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
package com.sheepit.client.standalone;
package com.sheepit.client.standalone.swing;
public enum SwingTooltips {
WORKING_DIRECTORY(
@@ -11,7 +11,7 @@ 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.)"),
+ "(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."),

View File

@@ -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 {